Compare commits

..

No commits in common. "58269d751c973365ee98c917ddcd4b165c75e623" and "e0373d693d0b92b4472c2eec755f9d5856f36cf9" have entirely different histories.

4 changed files with 18 additions and 121 deletions

View file

@ -19,8 +19,6 @@
#ifndef SEODISPARATE_COM_SIMPLE_ARCHIVER_HELPERS_H_
#define SEODISPARATE_COM_SIMPLE_ARCHIVER_HELPERS_H_
static const unsigned int MAX_SYMBOLIC_LINK_SIZE = 512;
/// Returns non-zero if this system is big-endian.
int simple_archiver_helper_is_big_endian(void);

View file

@ -21,13 +21,8 @@
#include "parser.h"
int print_list_fn(void *data, __attribute__((unused)) void *ud) {
const SDArchiverFileInfo *file_info = data;
if (file_info->link_dest == NULL) {
printf(" REGULAR FILE: %s\n", file_info->filename);
} else {
printf(" SYMBOLIC LINK: %s -> %s\n", file_info->filename,
file_info->link_dest);
}
const char *cstr = data;
printf(" %s\n", cstr);
return 0;
}

View file

@ -30,12 +30,10 @@
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#endif
#include "data_structures/hash_map.h"
#include "data_structures/linked_list.h"
#include "helpers.h"
#include "parser_internal.h"
/// Gets the first non "./"-like character in the filename.
@ -89,34 +87,6 @@ unsigned int simple_archiver_parser_internal_filename_idx(
return idx;
}
void simple_archiver_parser_internal_remove_end_slash(char *filename) {
int len = strlen(filename);
int idx;
for (idx = len; idx-- > 0;) {
if (filename[idx] != '/') {
++idx;
break;
}
}
if (idx < len && idx > 0) {
filename[idx] = 0;
}
}
void simple_archiver_internal_free_file_info_fn(void *data) {
SDArchiverFileInfo *file_info = data;
if (file_info) {
if (file_info->filename) {
free(file_info->filename);
}
if (file_info->link_dest) {
free(file_info->link_dest);
}
}
free(data);
}
int list_get_last_fn(void *data, void *ud) {
char **last = ud;
*last = data;
@ -218,7 +188,6 @@ int simple_archiver_parse_args(int argc, const char **argv,
int arg_length = strlen(argv[0] + arg_idx) + 1;
out->working_files[0] = malloc(arg_length);
strncpy(out->working_files[0], argv[0] + arg_idx, arg_length);
simple_archiver_parser_internal_remove_end_slash(out->working_files[0]);
out->working_files[1] = NULL;
} else {
int working_size = 1;
@ -240,8 +209,6 @@ int simple_archiver_parse_args(int argc, const char **argv,
// Set last element to the arg.
out->working_files[working_size - 1] = malloc(size);
strncpy(out->working_files[working_size - 1], argv[0] + arg_idx, size);
simple_archiver_parser_internal_remove_end_slash(
out->working_files[working_size - 1]);
}
}
@ -289,36 +256,16 @@ SDArchiverLinkedList *simple_archiver_parsed_to_filenames(
SIMPLE_ARCHIVER_PLATFORM == SIMPLE_ARCHIVER_PLATFORM_LINUX
for (char **iter = parsed->working_files; iter && *iter; ++iter) {
struct stat st;
memset(&st, 0, sizeof(struct stat));
fstatat(AT_FDCWD, *iter, &st, AT_SYMLINK_NOFOLLOW);
if ((st.st_mode & S_IFMT) == S_IFREG || (st.st_mode & S_IFMT) == S_IFLNK) {
// Is a regular file or a symbolic link.
if ((st.st_mode & S_IFMT) == S_IFLNK) {
// Is a symbolic link. TODO handle this.
} else if ((st.st_mode & S_IFMT) == S_IFREG) {
// Is a regular file.
int len = strlen(*iter) + 1;
char *filename = malloc(len);
strncpy(filename, *iter, len);
if (simple_archiver_hash_map_get(hash_map, filename, len - 1) == NULL) {
SDArchiverFileInfo *file_info = malloc(sizeof(SDArchiverFileInfo));
file_info->filename = filename;
if ((st.st_mode & S_IFMT) == S_IFLNK) {
file_info->link_dest = malloc(MAX_SYMBOLIC_LINK_SIZE);
ssize_t count = readlinkat(AT_FDCWD, filename, file_info->link_dest,
MAX_SYMBOLIC_LINK_SIZE - 1);
if (count >= MAX_SYMBOLIC_LINK_SIZE - 1) {
file_info->link_dest[MAX_SYMBOLIC_LINK_SIZE - 1] = 0;
} else if (count > 0) {
file_info->link_dest[count] = 0;
} else {
// Failure.
free(file_info->link_dest);
free(file_info);
free(filename);
continue;
}
} else {
file_info->link_dest = NULL;
}
simple_archiver_list_add(files_list, file_info,
simple_archiver_internal_free_file_info_fn);
simple_archiver_list_add(files_list, filename, NULL);
simple_archiver_hash_map_insert(&hash_map, &hash_map_sentinel, filename,
len - 1, container_no_free_fn,
container_no_free_fn);
@ -326,7 +273,7 @@ SDArchiverLinkedList *simple_archiver_parsed_to_filenames(
free(filename);
}
} else if ((st.st_mode & S_IFMT) == S_IFDIR) {
// Is a directory.
// Is a directory. TODO handle this.
__attribute__((cleanup(simple_archiver_list_free)))
SDArchiverLinkedList *dir_list = simple_archiver_list_init();
simple_archiver_list_add(dir_list, *iter, container_no_free_fn);
@ -350,48 +297,14 @@ SDArchiverLinkedList *simple_archiver_parsed_to_filenames(
char *combined_path = malloc(combined_size);
snprintf(combined_path, combined_size, "%s/%s", next,
dir_entry->d_name);
unsigned int valid_idx =
simple_archiver_parser_internal_filename_idx(combined_path);
if (valid_idx > 0) {
char *new_path = malloc(combined_size - valid_idx);
strncpy(new_path, combined_path + valid_idx,
combined_size - valid_idx);
free(combined_path);
combined_path = new_path;
combined_size -= valid_idx;
}
memset(&st, 0, sizeof(struct stat));
fstatat(AT_FDCWD, combined_path, &st, AT_SYMLINK_NOFOLLOW);
if ((st.st_mode & S_IFMT) == S_IFREG ||
(st.st_mode & S_IFMT) == S_IFLNK) {
// Is a file or a symbolic link.
if ((st.st_mode & S_IFMT) == S_IFLNK) {
// Is a symbolic link. TODO handle this.
} else if ((st.st_mode & S_IFMT) == S_IFREG) {
// Is a file.
if (simple_archiver_hash_map_get(hash_map, combined_path,
combined_size - 1) == NULL) {
SDArchiverFileInfo *file_info =
malloc(sizeof(SDArchiverFileInfo));
file_info->filename = combined_path;
if ((st.st_mode & S_IFMT) == S_IFLNK) {
file_info->link_dest = malloc(MAX_SYMBOLIC_LINK_SIZE);
ssize_t count =
readlinkat(AT_FDCWD, combined_path, file_info->link_dest,
MAX_SYMBOLIC_LINK_SIZE - 1);
if (count >= MAX_SYMBOLIC_LINK_SIZE - 1) {
file_info->link_dest[MAX_SYMBOLIC_LINK_SIZE - 1] = 0;
} else if (count > 0) {
file_info->link_dest[count] = 0;
} else {
// Failure.
free(file_info->link_dest);
free(file_info);
free(combined_path);
continue;
}
} else {
file_info->link_dest = NULL;
}
simple_archiver_list_add(
files_list, file_info,
simple_archiver_internal_free_file_info_fn);
simple_archiver_list_add(files_list, combined_path, NULL);
simple_archiver_hash_map_insert(
&hash_map, &hash_map_sentinel, combined_path,
combined_size - 1, container_no_free_fn,
@ -423,15 +336,13 @@ SDArchiverLinkedList *simple_archiver_parsed_to_filenames(
// Remove leading "./" entries from files_list.
for (SDArchiverLLNode *iter = files_list->head->next;
iter != files_list->tail; iter = iter->next) {
SDArchiverFileInfo *file_info = iter->data;
unsigned int idx =
simple_archiver_parser_internal_filename_idx(file_info->filename);
unsigned int idx = simple_archiver_parser_internal_filename_idx(iter->data);
if (idx > 0) {
int len = strlen(file_info->filename) + 1 - idx;
int len = strlen((char *)iter->data) + 1 - idx;
char *substr = malloc(len);
strncpy(substr, file_info->filename + idx, len);
free(file_info->filename);
file_info->filename = substr;
strncpy(substr, (char *)iter->data + idx, len);
free(iter->data);
iter->data = substr;
}
}

View file

@ -38,12 +38,6 @@ typedef struct SDArchiverParsed {
char **working_files;
} SDArchiverParsed;
typedef struct SDArchiverFileInfo {
char *filename;
/// Is NULL if not a symbolic link.
char *link_dest;
} SDArchiverFileInfo;
void simple_archiver_print_usage(void);
SDArchiverParsed simple_archiver_create_parsed(void);
@ -56,7 +50,6 @@ int simple_archiver_parse_args(int argc, const char **argv,
void simple_archiver_free_parsed(SDArchiverParsed *parsed);
/// Each entry in the linked list is an SDArchiverFileInfo object.
SDArchiverLinkedList *simple_archiver_parsed_to_filenames(
const SDArchiverParsed *parsed);