1 /* file_util.c - convenience routines for common stat operations
3 Copyright (C) 2009 Ubiq Technologies <graham.gower@gmail.com>
6 Copyright (C) 2001 University of Southern California
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License as
10 published by the Free Software Foundation; either version 2, or (at
11 your option) any later version.
13 This program is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
20 #include <sys/types.h>
26 #include "sprintf_alloc.h"
27 #include "file_util.h"
28 #include <libubox/md5.h>
29 #include "libbb/libbb.h"
33 int file_exists(const char *file_name
)
37 if (stat(file_name
, &st
) == -1)
43 int file_is_dir(const char *file_name
)
47 if (stat(file_name
, &st
) == -1)
50 return S_ISDIR(st
.st_mode
);
53 /* read a single line from a file, stopping at a newline or EOF.
54 If a newline is read, it will appear in the resulting string.
55 Return value is a malloc'ed char * which should be freed at
56 some point by the caller.
58 Return value is NULL if the file is at EOF when called.
60 char *file_read_line_alloc(FILE * fp
)
65 unsigned int line_size
= 0;
70 while (fgets(buf
, BUFSIZ
, fp
)) {
71 buf_len
= strlen(buf
);
72 if (buf
[buf_len
- 1] == '\n') {
79 line
= xrealloc(line
, line_size
+ 1);
80 strncat(line
, buf
, line_size
);
82 line_size
= buf_len
+ 1;
92 int file_move(const char *src
, const char *dest
)
96 err
= rename(src
, dest
);
99 /* src & dest live on different file systems */
100 err
= file_copy(src
, dest
);
104 opkg_perror(ERROR
, "Failed to rename %s to %s",
112 int file_copy(const char *src
, const char *dest
)
116 err
= copy_file(src
, dest
, FILEUTILS_FORCE
| FILEUTILS_PRESERVE_STATUS
);
118 opkg_msg(ERROR
, "Failed to copy file %s to %s.\n", src
, dest
);
123 int file_mkdir_hier(const char *path
, long mode
)
125 return make_directory(path
, mode
, FILEUTILS_RECUR
);
129 static int hex2bin(unsigned char x
)
131 if (x
>= 'a' && x
<= 'f')
133 else if (x
>= 'A' && x
<= 'F')
135 else if (x
>= '0' && x
<= '9')
141 static const unsigned char bin2hex
[16] = {
148 char *file_md5sum_alloc(const char *file_name
)
150 static const int md5sum_bin_len
= 16;
151 static const int md5sum_hex_len
= 32;
155 unsigned char md5sum_bin
[md5sum_bin_len
];
157 len
= md5sum(file_name
, md5sum_bin
);
160 opkg_msg(ERROR
, "Could't compute md5sum for %s.\n", file_name
);
164 md5sum_hex
= xcalloc(1, md5sum_hex_len
+ 1);
166 for (i
= 0; i
< md5sum_bin_len
; i
++) {
167 md5sum_hex
[i
* 2] = bin2hex
[md5sum_bin
[i
] >> 4];
168 md5sum_hex
[i
* 2 + 1] = bin2hex
[md5sum_bin
[i
] & 0xf];
171 md5sum_hex
[md5sum_hex_len
] = '\0';
176 char *file_sha256sum_alloc(const char *file_name
)
178 static const int sha256sum_bin_len
= 32;
179 static const int sha256sum_hex_len
= 64;
184 unsigned char sha256sum_bin
[sha256sum_bin_len
];
186 sha256sum_hex
= xcalloc(1, sha256sum_hex_len
+ 1);
188 file
= fopen(file_name
, "r");
190 opkg_perror(ERROR
, "Failed to open file %s", file_name
);
195 err
= sha256_stream(file
, sha256sum_bin
);
197 opkg_msg(ERROR
, "Could't compute sha256sum for %s.\n",
206 for (i
= 0; i
< sha256sum_bin_len
; i
++) {
207 sha256sum_hex
[i
* 2] = bin2hex
[sha256sum_bin
[i
] >> 4];
208 sha256sum_hex
[i
* 2 + 1] = bin2hex
[sha256sum_bin
[i
] & 0xf];
211 sha256sum_hex
[sha256sum_hex_len
] = '\0';
213 return sha256sum_hex
;
216 char *checksum_bin2hex(const char *src
, size_t len
)
219 static unsigned char buf
[65];
220 const unsigned char *s
= (unsigned char *)src
;
224 for (p
= buf
; len
> 0; s
++, len
--) {
225 *p
++ = bin2hex
[*s
/ 16];
226 *p
++ = bin2hex
[*s
% 16];
234 char *checksum_hex2bin(const char *src
, size_t *len
)
238 const unsigned char *s
= (unsigned char *)src
;
239 static unsigned char buf
[32];
246 while (isspace(*src
))
256 for (p
= buf
, *len
= 0;
257 slen
> 0 && isxdigit(s
[0]) && isxdigit(s
[1]);
258 slen
--, s
+= 2, (*len
)++)
259 *p
++ = hex2bin(s
[0]) * 16 + hex2bin(s
[1]);
264 int rm_r(const char *path
)
271 opkg_perror(ERROR
, "Missing directory parameter");
277 opkg_perror(ERROR
, "Failed to open dir %s", path
);
281 if (fchdir(dirfd(dir
)) == -1) {
282 opkg_perror(ERROR
, "Failed to change to dir %s", path
);
289 if ((dent
= readdir(dir
)) == NULL
) {
291 opkg_perror(ERROR
, "Failed to read dir %s",
298 if (!strcmp(dent
->d_name
, ".") || !strcmp(dent
->d_name
, ".."))
302 if (dent
->d_type
== DT_DIR
) {
303 if ((ret
= rm_r(dent
->d_name
)) == -1)
306 } else if (dent
->d_type
== DT_UNKNOWN
)
310 if ((ret
= lstat(dent
->d_name
, &st
)) == -1) {
311 opkg_perror(ERROR
, "Failed to lstat %s",
315 if (S_ISDIR(st
.st_mode
)) {
316 if ((ret
= rm_r(dent
->d_name
)) == -1)
322 if ((ret
= unlink(dent
->d_name
)) == -1) {
323 opkg_perror(ERROR
, "Failed to unlink %s", dent
->d_name
);
328 if (chdir("..") == -1) {
330 opkg_perror(ERROR
, "Failed to change to dir %s/..", path
);
333 if (rmdir(path
) == -1) {
335 opkg_perror(ERROR
, "Failed to remove dir %s", path
);
338 if (closedir(dir
) == -1) {
340 opkg_perror(ERROR
, "Failed to close dir %s", path
);
346 static int urlencode_is_specialchar(char c
)
374 char *urlencode_path(const char *filename
)
377 const unsigned char *in
;
378 unsigned char *copy
, *out
;
380 for (in
= (unsigned char *)filename
; *in
!= 0; in
++)
381 len
+= urlencode_is_specialchar(*in
) ? 3 : 1;
383 copy
= xcalloc(1, len
+ 1);
385 for (in
= (unsigned char *)filename
, out
= copy
; *in
!= 0; in
++) {
386 if (urlencode_is_specialchar(*in
)) {
388 *out
++ = bin2hex
[*in
/ 16];
389 *out
++ = bin2hex
[*in
% 16];
399 char *urldecode_path(const char *filename
)
401 unsigned char *copy
= (unsigned char *)xstrdup(filename
);
402 unsigned char *in
, *out
;
404 for (in
= copy
, out
= copy
; *in
!= 0; in
++) {
405 if (*in
== '%' && isxdigit(in
[1]) && isxdigit(in
[2])) {
406 *out
++ = hex2bin(in
[1]) * 16 + hex2bin(in
[2]);