]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
core/logging: Fix broken syslog levels on older glibc. 51/2451/3
authorWalter Doekes <walter+asterisk@wjd.nu>
Thu, 24 Mar 2016 10:38:16 +0000 (11:38 +0100)
committerJoshua Colp <jcolp@digium.com>
Thu, 24 Mar 2016 11:34:13 +0000 (06:34 -0500)
The fix to ASTERISK-25407 introduced the usage of LOG_MAKEPRI. However
this macro is broken in older glibc (< 2.17); it would left-shift the
facility a second time, causing the resultant priority to become
invalid.

The syslog manpage mentions nothing about LOG_MAKEPRI and suggests this:

    The priority argument is formed by ORing the facility and the level
    values [...].

ASTERISK-25510 #close
Reported by: Michael Newton

Change-Id: Ia89debe7fac5ad090c7ef595c0707f31bb1e3d03

main/logger.c

index aeb07325d6c6101853d0dee4418134237d427150..5a87d45b4385b0b90d97018de94d1dcb7002b36a 100644 (file)
@@ -1036,7 +1036,8 @@ static void ast_log_vsyslog(struct logmsg *msg, int facility)
                return;
        }
 
-       syslog_level = LOG_MAKEPRI(facility, syslog_level);
+       /* Don't use LOG_MAKEPRI because it's broken in glibc<2.17 */
+       syslog_level = facility | syslog_level; /* LOG_MAKEPRI(facility, syslog_level); */
 
        snprintf(buf, sizeof(buf), "%s[%d]%s: %s:%d in %s: %s",
                 levels[msg->level], msg->lwp, call_identifier_str, msg->file, msg->line, msg->function, msg->message);