123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427 |
- #region Apache License
- //
- // Licensed to the Apache Software Foundation (ASF) under one or more
- // contributor license agreements. See the NOTICE file distributed with
- // this work for additional information regarding copyright ownership.
- // The ASF licenses this file to you under the Apache License, Version 2.0
- // (the "License"); you may not use this file except in compliance with
- // the License. You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- //
- #endregion
- // MONO 1.0 Beta mcs does not like #if !A && !B && !C syntax
- // .NET Compact Framework 1.0 has no support for Win32 NetMessageBufferSend API
- #if !NETCF
- // MONO 1.0 has no support for Win32 NetMessageBufferSend API
- #if !MONO
- // SSCLI 1.0 has no support for Win32 NetMessageBufferSend API
- #if !SSCLI
- // We don't want framework or platform specific code in the CLI version of log4net
- #if !CLI_1_0
- using System;
- using System.Globalization;
- using System.Runtime.InteropServices;
- using log4net.Util;
- using log4net.Layout;
- using log4net.Core;
- namespace log4net.Appender
- {
- /// <summary>
- /// Logs entries by sending network messages using the
- /// <see cref="NetMessageBufferSend" /> native function.
- /// </summary>
- /// <remarks>
- /// <para>
- /// You can send messages only to names that are active
- /// on the network. If you send the message to a user name,
- /// that user must be logged on and running the Messenger
- /// service to receive the message.
- /// </para>
- /// <para>
- /// The receiver will get a top most window displaying the
- /// messages one at a time, therefore this appender should
- /// not be used to deliver a high volume of messages.
- /// </para>
- /// <para>
- /// The following table lists some possible uses for this appender :
- /// </para>
- /// <para>
- /// <list type="table">
- /// <listheader>
- /// <term>Action</term>
- /// <description>Property Value(s)</description>
- /// </listheader>
- /// <item>
- /// <term>Send a message to a user account on the local machine</term>
- /// <description>
- /// <para>
- /// <see cref="NetSendAppender.Server"/> = <name of the local machine>
- /// </para>
- /// <para>
- /// <see cref="NetSendAppender.Recipient"/> = <user name>
- /// </para>
- /// </description>
- /// </item>
- /// <item>
- /// <term>Send a message to a user account on a remote machine</term>
- /// <description>
- /// <para>
- /// <see cref="NetSendAppender.Server"/> = <name of the remote machine>
- /// </para>
- /// <para>
- /// <see cref="NetSendAppender.Recipient"/> = <user name>
- /// </para>
- /// </description>
- /// </item>
- /// <item>
- /// <term>Send a message to a domain user account</term>
- /// <description>
- /// <para>
- /// <see cref="NetSendAppender.Server"/> = <name of a domain controller | uninitialized>
- /// </para>
- /// <para>
- /// <see cref="NetSendAppender.Recipient"/> = <user name>
- /// </para>
- /// </description>
- /// </item>
- /// <item>
- /// <term>Send a message to all the names in a workgroup or domain</term>
- /// <description>
- /// <para>
- /// <see cref="NetSendAppender.Recipient"/> = <workgroup name | domain name>*
- /// </para>
- /// </description>
- /// </item>
- /// <item>
- /// <term>Send a message from the local machine to a remote machine</term>
- /// <description>
- /// <para>
- /// <see cref="NetSendAppender.Server"/> = <name of the local machine | uninitialized>
- /// </para>
- /// <para>
- /// <see cref="NetSendAppender.Recipient"/> = <name of the remote machine>
- /// </para>
- /// </description>
- /// </item>
- /// </list>
- /// </para>
- /// <para>
- /// <b>Note :</b> security restrictions apply for sending
- /// network messages, see <see cref="NetMessageBufferSend" />
- /// for more information.
- /// </para>
- /// </remarks>
- /// <example>
- /// <para>
- /// An example configuration section to log information
- /// using this appender from the local machine, named
- /// LOCAL_PC, to machine OPERATOR_PC :
- /// </para>
- /// <code lang="XML" escaped="true">
- /// <appender name="NetSendAppender_Operator" type="log4net.Appender.NetSendAppender">
- /// <server value="LOCAL_PC" />
- /// <recipient value="OPERATOR_PC" />
- /// <layout type="log4net.Layout.PatternLayout" value="%-5p %c [%x] - %m%n" />
- /// </appender>
- /// </code>
- /// </example>
- /// <author>Nicko Cadell</author>
- /// <author>Gert Driesen</author>
- public class NetSendAppender : AppenderSkeleton
- {
- #region Member Variables
- /// <summary>
- /// The DNS or NetBIOS name of the server on which the function is to execute.
- /// </summary>
- private string m_server;
- /// <summary>
- /// The sender of the network message.
- /// </summary>
- private string m_sender;
- /// <summary>
- /// The message alias to which the message should be sent.
- /// </summary>
- private string m_recipient;
- /// <summary>
- /// The security context to use for privileged calls
- /// </summary>
- private SecurityContext m_securityContext;
- #endregion
- #region Constructors
- /// <summary>
- /// Initializes the appender.
- /// </summary>
- /// <remarks>
- /// The default constructor initializes all fields to their default values.
- /// </remarks>
- public NetSendAppender()
- {
- }
- #endregion
- #region Properties
- /// <summary>
- /// Gets or sets the sender of the message.
- /// </summary>
- /// <value>
- /// The sender of the message.
- /// </value>
- /// <remarks>
- /// If this property is not specified, the message is sent from the local computer.
- /// </remarks>
- public string Sender
- {
- get { return m_sender; }
- set { m_sender = value; }
- }
- /// <summary>
- /// Gets or sets the message alias to which the message should be sent.
- /// </summary>
- /// <value>
- /// The recipient of the message.
- /// </value>
- /// <remarks>
- /// This property should always be specified in order to send a message.
- /// </remarks>
- public string Recipient
- {
- get { return m_recipient; }
- set { m_recipient = value; }
- }
-
- /// <summary>
- /// Gets or sets the DNS or NetBIOS name of the remote server on which the function is to execute.
- /// </summary>
- /// <value>
- /// DNS or NetBIOS name of the remote server on which the function is to execute.
- /// </value>
- /// <remarks>
- /// <para>
- /// For Windows NT 4.0 and earlier, the string should begin with \\.
- /// </para>
- /// <para>
- /// If this property is not specified, the local computer is used.
- /// </para>
- /// </remarks>
- public string Server
- {
- get { return m_server; }
- set { m_server = value; }
- }
- /// <summary>
- /// Gets or sets the <see cref="SecurityContext"/> used to call the NetSend method.
- /// </summary>
- /// <value>
- /// The <see cref="SecurityContext"/> used to call the NetSend method.
- /// </value>
- /// <remarks>
- /// <para>
- /// Unless a <see cref="SecurityContext"/> specified here for this appender
- /// the <see cref="SecurityContextProvider.DefaultProvider"/> is queried for the
- /// security context to use. The default behavior is to use the security context
- /// of the current thread.
- /// </para>
- /// </remarks>
- public SecurityContext SecurityContext
- {
- get { return m_securityContext; }
- set { m_securityContext = value; }
- }
- #endregion
- #region Implementation of IOptionHandler
- /// <summary>
- /// Initialize the appender based on the options set.
- /// </summary>
- /// <remarks>
- /// <para>
- /// This is part of the <see cref="IOptionHandler"/> delayed object
- /// activation scheme. The <see cref="ActivateOptions"/> method must
- /// be called on this object after the configuration properties have
- /// been set. Until <see cref="ActivateOptions"/> is called this
- /// object is in an undefined state and must not be used.
- /// </para>
- /// <para>
- /// If any of the configuration properties are modified then
- /// <see cref="ActivateOptions"/> must be called again.
- /// </para>
- /// <para>
- /// The appender will be ignored if no <see cref="Recipient" /> was specified.
- /// </para>
- /// </remarks>
- /// <exception cref="ArgumentNullException">The required property <see cref="Recipient" /> was not specified.</exception>
- public override void ActivateOptions()
- {
- base.ActivateOptions();
-
- if (this.Recipient == null)
- {
- throw new ArgumentNullException("Recipient", "The required property 'Recipient' was not specified.");
- }
- if (m_securityContext == null)
- {
- m_securityContext = SecurityContextProvider.DefaultProvider.CreateSecurityContext(this);
- }
- }
- #endregion
- #region Override implementation of AppenderSkeleton
- /// <summary>
- /// This method is called by the <see cref="M:AppenderSkeleton.DoAppend(LoggingEvent)"/> method.
- /// </summary>
- /// <param name="loggingEvent">The event to log.</param>
- /// <remarks>
- /// <para>
- /// Sends the event using a network message.
- /// </para>
- /// </remarks>
- #if NET_4_0 || MONO_4_0 || NETSTANDARD1_3
- [System.Security.SecuritySafeCritical]
- #endif
- #if !NETSTANDARD1_3
- [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, UnmanagedCode = true)]
- #endif
- protected override void Append(LoggingEvent loggingEvent)
- {
- NativeError nativeError = null;
- // Render the event in the callers security context
- string renderedLoggingEvent = RenderLoggingEvent(loggingEvent);
- using(m_securityContext.Impersonate(this))
- {
- // Send the message
- int returnValue = NetMessageBufferSend(this.Server, this.Recipient, this.Sender, renderedLoggingEvent, renderedLoggingEvent.Length * Marshal.SystemDefaultCharSize);
- // Log the error if the message could not be sent
- if (returnValue != 0)
- {
- // Lookup the native error
- nativeError = NativeError.GetError(returnValue);
- }
- }
- if (nativeError != null)
- {
- // Handle the error over to the ErrorHandler
- ErrorHandler.Error(nativeError.ToString() + " (Params: Server=" + this.Server + ", Recipient=" + this.Recipient + ", Sender=" + this.Sender + ")");
- }
- }
- /// <summary>
- /// This appender requires a <see cref="Layout"/> to be set.
- /// </summary>
- /// <value><c>true</c></value>
- /// <remarks>
- /// <para>
- /// This appender requires a <see cref="Layout"/> to be set.
- /// </para>
- /// </remarks>
- override protected bool RequiresLayout
- {
- get { return true; }
- }
- #endregion
- #region Stubs For Native Function Calls
- /// <summary>
- /// Sends a buffer of information to a registered message alias.
- /// </summary>
- /// <param name="serverName">The DNS or NetBIOS name of the server on which the function is to execute.</param>
- /// <param name="msgName">The message alias to which the message buffer should be sent</param>
- /// <param name="fromName">The originator of the message.</param>
- /// <param name="buffer">The message text.</param>
- /// <param name="bufferSize">The length, in bytes, of the message text.</param>
- /// <remarks>
- /// <para>
- /// The following restrictions apply for sending network messages:
- /// </para>
- /// <para>
- /// <list type="table">
- /// <listheader>
- /// <term>Platform</term>
- /// <description>Requirements</description>
- /// </listheader>
- /// <item>
- /// <term>Windows NT</term>
- /// <description>
- /// <para>
- /// No special group membership is required to send a network message.
- /// </para>
- /// <para>
- /// Admin, Accounts, Print, or Server Operator group membership is required to
- /// successfully send a network message on a remote server.
- /// </para>
- /// </description>
- /// </item>
- /// <item>
- /// <term>Windows 2000 or later</term>
- /// <description>
- /// <para>
- /// If you send a message on a domain controller that is running Active Directory,
- /// access is allowed or denied based on the access control list (ACL) for the securable
- /// object. The default ACL permits only Domain Admins and Account Operators to send a network message.
- /// </para>
- /// <para>
- /// On a member server or workstation, only Administrators and Server Operators can send a network message.
- /// </para>
- /// </description>
- /// </item>
- /// </list>
- /// </para>
- /// <para>
- /// For more information see <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/netmgmt/netmgmt/security_requirements_for_the_network_management_functions.asp">Security Requirements for the Network Management Functions</a>.
- /// </para>
- /// </remarks>
- /// <returns>
- /// <para>
- /// If the function succeeds, the return value is zero.
- /// </para>
- /// </returns>
- [DllImport("netapi32.dll", SetLastError=true)]
- protected static extern int NetMessageBufferSend(
- [MarshalAs(UnmanagedType.LPWStr)] string serverName,
- [MarshalAs(UnmanagedType.LPWStr)] string msgName,
- [MarshalAs(UnmanagedType.LPWStr)] string fromName,
- [MarshalAs(UnmanagedType.LPWStr)] string buffer,
- int bufferSize);
- #endregion
- }
- }
- #endif // !CLI_1_0
- #endif // !SSCLI
- #endif // !MONO
- #endif // !NETCF
|