blob: c5a0be86f5c245a4b1c3bc72efe894d2557d8137 [file] [log] [blame]
Andrew Geissler706d5aa2021-02-12 15:55:30 -06001ppp: Buffer overflow in radius plugin
2
3From: https://bugs.debian.org/cgi-bin/bugreport.cgi?msg=5;bug=782450
4
5Upstream-Status: Backport
6CVE: CVE-2015-3310
7
8On systems with more than 65535 processes running, pppd aborts when
9sending a "start" accounting message to the RADIUS server because of a
10buffer overflow in rc_mksid.
11
12The process id is used in rc_mksid to generate a pseudo-unique string,
13assuming that the hex representation of the pid will be at most 4
14characters (FFFF). __sprintf_chk(), used when compiling with
15optimization levels greater than 0 and FORTIFY_SOURCE, detects the
16buffer overflow and makes pppd crash.
17
18The following patch fixes the problem.
19
20--- ppp-2.4.6.orig/pppd/plugins/radius/util.c
21+++ ppp-2.4.6/pppd/plugins/radius/util.c
22@@ -77,7 +77,7 @@ rc_mksid (void)
23 static unsigned short int cnt = 0;
24 sprintf (buf, "%08lX%04X%02hX",
25 (unsigned long int) time (NULL),
26- (unsigned int) getpid (),
27+ (unsigned int) getpid () % 65535,
28 cnt & 0xFF);
29 cnt++;
30 return buf;