public inbox for location@lists.ipfire.org
 help / color / mirror / Atom feed
From: Michael Tremer <michael.tremer@ipfire.org>
To: location@lists.ipfire.org
Subject: Re: mem-map leak in loc_database_free()
Date: Mon, 22 Mar 2021 11:44:34 +0000	[thread overview]
Message-ID: <D8BC0E4A-0A27-4AAC-9A4C-0154A2AAD2B2@ipfire.org> (raw)
In-Reply-To: <45bfe380-44a1-5e0a-2e8f-d8fb7bf8e8fa@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 1715 bytes --]

Hello Gisle,

Thank you for reporting this problem.

Copying files under Linux works even when they are left open like this.

However, I merged your patch.

-Michael

> On 21 Mar 2021, at 16:35, Gisle Vanem <gisle.vanem(a)gmail.com> wrote:
> 
> Hello list.
> 
> In my Windows program I use the 'libloc' library
> and the compressed 'location.db.xz' file. I also have
> some functions to download, decompress to a temp-file.
> Then finally using 'CopyFile()' to update to the final
> .db-file.
> 
> But my problem was that 'CopyFile()' failed with error
> 'ERROR_USER_MAPPED_FILE' since some regions to the file
> was not closed.
> 
> I saw that 'libloc' does 5 calls to 'mmap()' but only
> 4 calls to 'munmap()' in 'loc_database_free()'; the freeing
> of 'db->countries_v1' is missing.
> 
> So with this patch my program works fine:
> 
> --- a/database.c 2020-12-03 15:04:38
> +++ b/database.c 2021-03-21 17:21:04
> 
> @@ -446,6 +446,13 @@
>                        ERROR(db->ctx, "Could not unmap network nodes section: %s\n", strerror(errno));
>        }
> 
> +       // Remove mapped countries nodes section
> +       if (db->countries_v1) {
> +               r = munmap(db->countries_v1, db->countries_count * sizeof(*db->countries_v1));
> +               if (r)
> +                       ERROR(db->ctx, "Could not unmap countries nodes section: %s\n", strerror(errno));
> +       }
> +
>        if (db->pool)
>                loc_stringpool_unref(db->pool);
> ---------
> 
> Not sure how 'libloc' could work w/o this on Linux.
> What does a 'cp /tmp/location.db location-in-use.db'
> say when running one of the test programs in parallel?
> 
> -- 
> --gv


      reply	other threads:[~2021-03-22 11:44 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-21 16:35 Gisle Vanem
2021-03-22 11:44 ` Michael Tremer [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=D8BC0E4A-0A27-4AAC-9A4C-0154A2AAD2B2@ipfire.org \
    --to=michael.tremer@ipfire.org \
    --cc=location@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox