Bug 38950 - dbus-cleanup-sockets can use a lot of memory and or crash
Summary: dbus-cleanup-sockets can use a lot of memory and or crash
Status: RESOLVED MOVED
Alias: None
Product: dbus
Classification: Unclassified
Component: core (show other bugs)
Version: 1.5
Hardware: All All
: low normal
Assignee: D-Bus Maintainers
QA Contact: D-Bus Maintainers
URL:
Whiteboard:
Keywords: love
Depends on:
Blocks:
 
Reported: 2011-07-04 06:40 UTC by dbus???
Modified: 2018-10-12 21:09 UTC (History)
2 users (show)

See Also:
i915 platform:
i915 features:


Attachments

Description dbus??? 2011-07-04 06:40:24 UTC
dbus-cleanup-sockets can use a _lot_ of memory or crash  when there is a *large* number of files in /tmp with a prefix "dbus-".

in dbus-cleanup-sockets.c if the system has sufficient memory and the filesystem permits creating enough files such that n_entries wraps around (becomes negative) then the 'while ((dent = readdir (dirh)))' loop will crash on the line "entries[n_entries] = se;"


A partial fix for this issue may look like the following:

static void
read_sockets (const char    *dir,
              SocketEntry ***entries_p,
              int           *n_entries_p)
{
  DIR   *dirh;
  struct dirent *dent;
  SocketEntry **entries;
-  int n_entries;
+  unsigned short int n_entries;
  int allocated;
Comment 1 Simon McVittie 2011-07-11 05:21:15 UTC
The structure of this tool seems rather crazy; instead of looping over readdir() and putting all the sockets in a list, then iterating through the list, it looks as though it'd make much more sense to loop over readdir() and do everything we'll ever do with the first socket before moving on to the second.

On Linux, this tool should never be needed, because D-Bus prefers to use abstract sockets (which don't exist in the filesystem and never need cleanup).

If someone who cares about non-Linux OSs with millions of concurrent D-Bus sessions wants to rewrite dbus-cleanup-sockets to have a more sensible structure, I wouldn't say no...
Comment 2 GitLab Migration User 2018-10-12 21:09:17 UTC
-- GitLab Migration Automatic Message --

This bug has been migrated to freedesktop.org's GitLab instance and has been closed from further activity.

You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.freedesktop.org/dbus/dbus/issues/50.


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.