]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
locale: Remove cleanup function pointer from struct __localedata
authorFlorian Weimer <fweimer@redhat.com>
Mon, 23 May 2022 08:08:18 +0000 (10:08 +0200)
committerFlorian Weimer <fweimer@redhat.com>
Mon, 23 May 2022 09:06:31 +0000 (11:06 +0200)
We can call the cleanup functions directly from _nl_unload_locale
if we pass the category to it.

Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
locale/findlocale.c
locale/loadarchive.c
locale/loadlocale.c
locale/localeinfo.h
locale/setlocale.c
time/alt_digit.c
time/era.c
time/lc-time-cleanup.c
wcsmbs/wcsmbsload.c

index 64f687ea9d420e85afe346d8ff4ae3684c17e794..fc433b61d806c2a14adc3ca2339b8eb0cc96ff33 100644 (file)
@@ -348,6 +348,6 @@ _nl_remove_locale (int locale, struct __locale_data *data)
        }
 
       /* This does the real work.  */
-      _nl_unload_locale (data);
+      _nl_unload_locale (locale, data);
     }
 }
index 5a2356707feb18bb5eece117fe7d46964a7b6712..fcc4913319a4df142ef7d3ba761a970af3aef84d 100644 (file)
@@ -515,7 +515,7 @@ _nl_archive_subfreeres (void)
       free (dead->name);
       for (category = 0; category < __LC_LAST; ++category)
        if (category != LC_ALL && dead->data[category] != NULL)
-         _nl_unload_locale (dead->data[category]);
+         _nl_unload_locale (category, dead->data[category]);
       free (dead);
     }
   archloaded = NULL;
index b8cd1aa4414ae46c103ab2c90bf8c61460f930e4..9069bafcd82c6d4e850b46cf15a9e561b1a18a7c 100644 (file)
@@ -101,8 +101,7 @@ _nl_intern_locale_data (int category, const void *data, size_t datasize)
 
   newdata->filedata = (void *) filedata;
   newdata->filesize = datasize;
-  newdata->private.data = NULL;
-  newdata->private.cleanup = NULL;
+  memset (&newdata->private, 0, sizeof (newdata->private));
   newdata->usage_count = 0;
   newdata->use_translit = 0;
   newdata->nstrings = filedata->nstrings;
@@ -282,10 +281,18 @@ _nl_load_locale (struct loaded_l10nfile *file, int category)
 }
 
 void
-_nl_unload_locale (struct __locale_data *locale)
+_nl_unload_locale (int category, struct __locale_data *locale)
 {
-  if (locale->private.cleanup)
-    (*locale->private.cleanup) (locale);
+  /* Deallocate locale->private.  */
+  switch (category)
+    {
+    case LC_CTYPE:
+      _nl_cleanup_ctype (locale);
+      break;
+    case LC_TIME:
+      _nl_cleanup_time (locale);
+      break;
+    }
 
   switch (__builtin_expect (locale->alloc, ld_mapped))
     {
index 87d3b48c163da0c4f2edaa1101ffdcefa32b42dd..8ce072b7b46907cb86fa35561a06eae2898d09fa 100644 (file)
@@ -58,18 +58,13 @@ struct __locale_data
     ld_archive                 /* Both point into mmap'd archive regions.  */
   } alloc;
 
-  /* This provides a slot for category-specific code to cache data computed
-     about this locale.  That code can set a cleanup function to deallocate
-     the data.  */
-  struct
+  /* This provides a slot for category-specific code to cache data
+     computed about this locale.  This is deallocated at the start of
+     _nl_unload_locale.  */
+  union
   {
-    void (*cleanup) (struct __locale_data *);
-    union
-    {
-      void *data;
-      struct lc_time_data *time;
-      const struct gconv_fcts *ctype;
-    };
+    struct lc_time_data *time;
+    const struct gconv_fcts *ctype;
   } private;
 
   unsigned int usage_count;    /* Counter for users.  */
@@ -349,7 +344,8 @@ extern void _nl_load_locale (struct loaded_l10nfile *file, int category)
      attribute_hidden;
 
 /* Free all resource.  */
-extern void _nl_unload_locale (struct __locale_data *locale) attribute_hidden;
+extern void _nl_unload_locale (int category, struct __locale_data *locale)
+  attribute_hidden;
 
 /* Free the locale and give back all memory if the usage count is one.  */
 extern void _nl_remove_locale (int locale, struct __locale_data *data)
@@ -409,7 +405,8 @@ extern int _nl_parse_alt_digit (const char **strp,
 /* Postload processing.  */
 extern void _nl_postload_ctype (void);
 
-/* Functions used for the `private.cleanup' hook.  */
+/* Deallocate category-specific data.  Used in _nl_unload_locale.  */
+extern void _nl_cleanup_ctype (struct __locale_data *) attribute_hidden;
 extern void _nl_cleanup_time (struct __locale_data *) attribute_hidden;
 
 
index 38e9bec6bbb61eaa049e36b5ad6e9ffc5c2c6f44..56c14d853318e22e765e7bd8fd5a09d0951b52ff 100644 (file)
@@ -489,7 +489,7 @@ free_category (int category,
       struct __locale_data *data = (struct __locale_data *) runp->data;
 
       if (data != NULL && data != c_data)
-       _nl_unload_locale (data);
+       _nl_unload_locale (category, data);
       runp = runp->next;
       free ((char *) curr->filename);
       free (curr);
index ae22b3f92737905f97bed425646ecd6759b14e79..7ed9b6b0a566f846c78cd76796bb3b0c47b6b8f3 100644 (file)
@@ -41,7 +41,6 @@ _nl_init_alt_digit (struct __locale_data *current)
       if (current->private.time == NULL)
        return;
       memset (current->private.time, 0, sizeof *current->private.time);
-      current->private.cleanup = &_nl_cleanup_time;
     }
   data = current->private.time;
 
@@ -110,7 +109,6 @@ _nl_get_walt_digit (unsigned int number, struct __locale_data *current)
       if (current->private.time == NULL)
        goto out;
       memset (current->private.time, 0, sizeof *current->private.time);
-      current->private.cleanup = &_nl_cleanup_time;
     }
   data = current->private.time;
 
index 43528ad0d2a37b71c31acf46e4d9d405d0119065..d4b538c7b0b76b250d952c86061905cf01b09661 100644 (file)
@@ -53,7 +53,6 @@ _nl_init_era_entries (struct __locale_data *current)
       if (current->private.time == NULL)
        goto out;
       memset (current->private.time, 0, sizeof *current->private.time);
-      current->private.cleanup = &_nl_cleanup_time;
     }
   data = current->private.time;
 
index 2734e25815ee82f92d39ae8bedf5b5ede4030a17..f844e049056b6f5a90290c4036b66c413fbcc304 100644 (file)
@@ -26,7 +26,6 @@ _nl_cleanup_time (struct __locale_data *locale)
   if (data != NULL)
     {
       locale->private.time = NULL;
-      locale->private.cleanup = NULL;
 
       free (data->eras);
       free (data->alt_digits);
index ffb5cb7b876efe198ebc58c66afc24f1d7367a80..af539a099a9d84796550811a31bb2be509230901 100644 (file)
@@ -202,10 +202,7 @@ __wcsmbs_load_conv (struct __locale_data *new_category)
          new_category->private.ctype = &__wcsmbs_gconv_fcts_c;
        }
       else
-       {
-         new_category->private.ctype = new_fcts;
-         new_category->private.cleanup = &_nl_cleanup_ctype;
-       }
+       new_category->private.ctype = new_fcts;
     }
 
   __libc_rwlock_unlock (__libc_setlocale_lock);
@@ -267,10 +264,9 @@ void
 _nl_cleanup_ctype (struct __locale_data *locale)
 {
   const struct gconv_fcts *const data = locale->private.ctype;
-  if (data != NULL)
+  if (data != NULL && data != &__wcsmbs_gconv_fcts_c)
     {
       locale->private.ctype = NULL;
-      locale->private.cleanup = NULL;
 
       /* Free the old conversions.  */
       __gconv_close_transform (data->tomb, data->tomb_nsteps);