1 /* Copyright (C) 2000-2023 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published
6 by the Free Software Foundation; version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, see <https://www.gnu.org/licenses/>. */
28 #include "localedef.h"
29 #include "charmap-dir.h"
31 /* The data type of a charmap directory being traversed. */
35 /* The directory pathname, ending in a slash. */
38 /* Scratch area used for returning pathnames. */
43 /* Starts a charmap directory traversal.
44 Returns a CHARMAP_DIR, or NULL if the directory doesn't exist. */
46 charmap_opendir (const char *directory
)
48 struct charmap_dir
*cdir
;
53 dir
= opendir (directory
);
56 record_error (1, errno
, gettext ("\
57 cannot read character map directory `%s'"),
62 cdir
= (struct charmap_dir
*) xmalloc (sizeof (struct charmap_dir
));
65 len
= strlen (directory
);
66 add_slash
= (len
== 0 || directory
[len
- 1] != '/');
67 cdir
->directory
= (char *) xmalloc (len
+ add_slash
+ 1);
68 memcpy (cdir
->directory
, directory
, len
);
70 cdir
->directory
[len
] = '/';
71 cdir
->directory
[len
+ add_slash
] = '\0';
72 cdir
->directory_len
= len
+ add_slash
;
74 cdir
->pathname
= NULL
;
75 cdir
->pathname_size
= 0;
80 /* Reads the next directory entry.
81 Returns its charmap name, or NULL if past the last entry or upon error.
82 The storage returned may be overwritten by a later charmap_readdir
83 call on the same CHARMAP_DIR. */
85 charmap_readdir (CHARMAP_DIR
*cdir
)
89 struct dirent64
*dirent
;
95 dirent
= readdir64 (cdir
->dir
);
98 if (strcmp (dirent
->d_name
, ".") == 0)
100 if (strcmp (dirent
->d_name
, "..") == 0)
103 len
= strlen (dirent
->d_name
);
105 size
= cdir
->directory_len
+ len
+ 1;
106 if (size
> cdir
->pathname_size
)
108 free (cdir
->pathname
);
109 if (size
< 2 * cdir
->pathname_size
)
110 size
= 2 * cdir
->pathname_size
;
111 cdir
->pathname
= (char *) xmalloc (size
);
112 cdir
->pathname_size
= size
;
115 stpcpy (stpcpy (cdir
->pathname
, cdir
->directory
), dirent
->d_name
);
116 filename
= cdir
->pathname
+ cdir
->directory_len
;
118 if (dirent
->d_type
!= DT_UNKNOWN
&& dirent
->d_type
!= DT_LNK
)
119 mode
= DTTOIF (dirent
->d_type
);
122 struct stat64 statbuf
;
124 if (stat64 (cdir
->pathname
, &statbuf
) < 0)
127 mode
= statbuf
.st_mode
;
133 /* For compressed charmaps, the canonical charmap name does not
134 include the extension. */
135 if (len
> 3 && memcmp (&filename
[len
- 3], ".gz", 3) == 0)
136 filename
[len
- 3] = '\0';
137 else if (len
> 4 && memcmp (&filename
[len
- 4], ".bz2", 4) == 0)
138 filename
[len
- 4] = '\0';
144 /* Finishes a charmap directory traversal, and frees the resources
145 attached to the CHARMAP_DIR. */
147 charmap_closedir (CHARMAP_DIR
*cdir
)
149 DIR *dir
= cdir
->dir
;
151 free (cdir
->directory
);
152 free (cdir
->pathname
);
154 return closedir (dir
);
157 /* Creates a subprocess decompressing the given pathname, and returns
158 a stream reading its output (the decompressed data). */
161 fopen_uncompressed (const char *pathname
, const char *compressor
)
165 pfd
= open (pathname
, O_RDONLY
);
168 struct stat64 statbuf
;
171 if (fstat64 (pfd
, &statbuf
) >= 0
172 && S_ISREG (statbuf
.st_mode
)
176 = { (char *) compressor
, (char *) "-d", (char *) "-c", NULL
};
177 posix_spawn_file_actions_t actions
;
179 if (posix_spawn_file_actions_init (&actions
) == 0)
181 if (posix_spawn_file_actions_adddup2 (&actions
,
182 fd
[1], STDOUT_FILENO
) == 0
183 && posix_spawn_file_actions_addclose (&actions
, fd
[1]) == 0
184 && posix_spawn_file_actions_addclose (&actions
, fd
[0]) == 0
185 && posix_spawn_file_actions_adddup2 (&actions
,
186 pfd
, STDIN_FILENO
) == 0
187 && posix_spawn_file_actions_addclose (&actions
, pfd
) == 0
188 && posix_spawnp (NULL
, compressor
, &actions
, NULL
,
191 posix_spawn_file_actions_destroy (&actions
);
194 return fdopen (fd
[0], "r");
196 posix_spawn_file_actions_destroy (&actions
);
206 /* Opens a charmap for reading, given its name (not an alias name). */
208 charmap_open (const char *directory
, const char *name
)
210 size_t dlen
= strlen (directory
);
211 int add_slash
= (dlen
== 0 || directory
[dlen
- 1] != '/');
212 size_t nlen
= strlen (name
);
217 pathname
= alloca (dlen
+ add_slash
+ nlen
+ 5);
218 p
= stpcpy (pathname
, directory
);
221 p
= stpcpy (p
, name
);
223 stream
= fopen (pathname
, "rm");
227 memcpy (p
, ".gz", 4);
228 stream
= fopen_uncompressed (pathname
, "gzip");
232 memcpy (p
, ".bz2", 5);
233 stream
= fopen_uncompressed (pathname
, "bzip2");
240 /* An empty alias list. Avoids the need to return NULL from
242 static char *empty
[1];
244 /* Returns a NULL terminated list of alias names of a charmap. */
246 charmap_aliases (const char *directory
, const char *name
)
252 stream
= charmap_open (directory
, name
);
259 while (!feof (stream
))
264 if (fscanf (stream
, " <code_set_name> %ms", &alias
) == 1
265 || fscanf (stream
, "%% alias %ms", &alias
) == 1)
267 aliases
= (char **) xrealloc (aliases
,
268 (naliases
+ 2) * sizeof (char *));
269 aliases
[naliases
++] = alias
;
272 /* Read the rest of the line. */
273 if (fgets (junk
, sizeof junk
, stream
) != NULL
)
275 if (strstr (junk
, "CHARMAP") != NULL
)
276 /* We cannot expect more aliases from now on. */
279 while (strchr (junk
, '\n') == NULL
280 && fgets (junk
, sizeof junk
, stream
) != NULL
)
290 aliases
[naliases
] = NULL
;
294 /* Frees an alias list returned by charmap_aliases. */
296 charmap_free_aliases (char **aliases
)
298 if (aliases
!= empty
)
302 for (p
= aliases
; *p
; p
++)