This file is indexed.

/usr/include/rutil/ResipAssert.h is in libresiprocate-1.11-dev 1:1.11.0~beta5-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
#ifndef __ASSERTION_H
#define __ASSERTION_H

/**
 * This file needs to work for both C and C++ code.
 *
 * The resip_assert() macro is preferred over regular assert()
 * for all library and application code.  Unit tests should continue
 * to use regular assert().  Third party code placed on contrib
 * should not be adapted to use resip_assert()
 *
 * It is possible to redefine resip_assert() to provide additional logging
 * or throw an exception such as std::runtime_error() as desired.
 *
 * On UNIX systems, this could add a call to syslog.  On Windows,
 * it could be a notification in the system's event log.
 *
 * CAUTION: do not call other reSIProcate stack methods from here.
 * For example, do not try to use the reSIProcate logger or even
 * basic classes like resip::Data.  If the resip_assert() was
 * invoked from one of those other low-level classes then the stack
 * may be in such a bad state that they behave unpredictably
 * or even worse, recursion may occur if resip_assert() is invoked
 * again.  We may do further work on this code to make it work
 * safely with the logger but at present it is not ready for that.
 */

#include <assert.h>

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

// Uncomment or define on the compiler command line to have
// assertion failures logged to the Windows event logger
//#define LOG_EVENT_AND_ASSERT

#if defined(WIN32) && defined(LOG_EVENT_AND_ASSERT)

#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#include <windows.h>
#include <Winreg.h>
#include <winnt.h>
#include <tchar.h>
#include <crtdbg.h>

#define SysLogAssertEvent(x)                                                   \
{                                                                              \
    HKEY key;                                                                  \
    long errorCode =                                                           \
        RegCreateKeyEx(HKEY_LOCAL_MACHINE, _T("System\\CurrentControlSet\\Services\\EventLog\\Application\\reSIProcate"), \
                       0, NULL, REG_OPTION_NON_VOLATILE, KEY_READ, NULL, &key, NULL); \
    if (ERROR_SUCCESS == errorCode)                                            \
    {                                                                          \
        HANDLE eventLogHandle;                                                 \
        RegCloseKey(key);                                                      \
        eventLogHandle = RegisterEventSource(NULL, _T("reSIProcate"));         \
        if (eventLogHandle != NULL)                                            \
        {                                                                      \
            TCHAR appPath[MAX_PATH];                                                    \
            TCHAR moduleInfo[1024];                                                     \
            TCHAR fileInfo[1024];                                                       \
            TCHAR lineInfo[1024];                                                       \
            TCHAR assertInfo[1024];                                                     \
            const TCHAR* lines[4] = { moduleInfo, fileInfo, lineInfo, assertInfo };     \
            GetModuleFileName(0, appPath, MAX_PATH);                                    \
            _sntprintf_s(moduleInfo, 1024, _TRUNCATE, _T("\r\nModule : %s"), appPath);  \
            _sntprintf_s(fileInfo, 1024, _TRUNCATE, _T("\r\nFile : %s"), _T(__FILE__)); \
            _sntprintf_s(lineInfo, 1024, _TRUNCATE, _T("\r\nLine : %d"), __LINE__);     \
            _sntprintf_s(assertInfo, 1024, _TRUNCATE, _T("\r\nAssert: %s"), _T(#x));    \
            ReportEvent(eventLogHandle, EVENTLOG_ERROR_TYPE, 0, 0, NULL, 4, 0, lines, NULL); \
            DeregisterEventSource(eventLogHandle);                                      \
        }                                                                      \
    }                                                                          \
}

#define resip_assert(x)                                                        \
{                                                                              \
   if ( !(x) )                                                                 \
   {                                                                           \
      SysLogAssertEvent( (x) );                                                \
   }                                                                           \
   {                                                                           \
      assert( (x) );                                                           \
   }                                                                           \
}

#else

#ifdef RESIP_ASSERT_SYSLOG
#include <syslog.h>
#define RESIP_ASSERT_SYSLOG_PRIORITY (LOG_DAEMON | LOG_CRIT)
#define resip_assert(x)                                                        \
{                                                                              \
   if ( !(x) )                                                                 \
   {                                                                           \
      syslog( RESIP_ASSERT_SYSLOG_PRIORITY, "assertion failed: %s:%d: %s", __FILE__, __LINE__, #x );                 \
   }                                                                           \
   {                                                                           \
      assert( (x) );                                                           \
   }                                                                           \
}
#else
#define resip_assert(x) assert(x)
#endif

#endif // defined(WIN32) && defined(LOG_EVENT_AND_ASSERT)

#endif // __ASSERTION_H

/* ====================================================================
 *
 * Copyright (c) 2014 Daniel Pocock  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *
 * 3. Neither the name of the author(s) nor the names of any contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) AND CONTRIBUTORS "AS IS" AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR(S) OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 *
 * ====================================================================
 *
 *
 */