2005-04-22 20:15:36 +08:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* BlueZ - Bluetooth protocol stack for Linux
|
|
|
|
*
|
2006-01-03 21:28:56 +08:00
|
|
|
* Copyright (C) 2004-2006 Marcel Holtmann <marcel@holtmann.org>
|
2005-04-22 20:15:36 +08:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
2005-10-30 06:36:31 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
2005-04-22 20:15:36 +08:00
|
|
|
*
|
2005-10-30 06:36:31 +08:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2005-04-22 20:15:36 +08:00
|
|
|
*
|
2005-10-30 06:36:31 +08:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2005-04-22 20:15:36 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/mman.h>
|
2005-08-05 16:43:42 +08:00
|
|
|
#include <sys/param.h>
|
2005-04-22 20:15:36 +08:00
|
|
|
|
2006-05-01 04:40:25 +08:00
|
|
|
#include "textfile.h"
|
|
|
|
|
2006-02-11 20:12:27 +08:00
|
|
|
int create_dirs(const char *filename, const mode_t mode)
|
2005-08-30 08:35:39 +08:00
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
char dir[PATH_MAX + 1], *prev, *next;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = stat(filename, &st);
|
|
|
|
if (!err && S_ISREG(st.st_mode))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
memset(dir, 0, PATH_MAX + 1);
|
|
|
|
strcat(dir, "/");
|
|
|
|
|
|
|
|
prev = strchr(filename, '/');
|
|
|
|
|
|
|
|
while (prev) {
|
|
|
|
next = strchr(prev + 1, '/');
|
|
|
|
if (!next)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (next - prev == 1) {
|
|
|
|
prev = next;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
strncat(dir, prev + 1, next - prev);
|
|
|
|
mkdir(dir, mode);
|
|
|
|
|
|
|
|
prev = next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-02-11 20:12:27 +08:00
|
|
|
int create_file(const char *filename, const mode_t mode)
|
2005-08-30 08:35:39 +08:00
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
umask(S_IWGRP | S_IWOTH);
|
|
|
|
create_dirs(filename, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
|
|
|
|
|
|
|
|
fd = open(filename, O_RDWR | O_CREAT, mode);
|
|
|
|
if (fd < 0)
|
|
|
|
return fd;
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-02-11 20:12:27 +08:00
|
|
|
static inline char *find_key(char *map, const char *key, size_t len)
|
2006-02-07 17:10:07 +08:00
|
|
|
{
|
|
|
|
char *off = strstr(map, key);
|
|
|
|
|
|
|
|
while (off && ((off > map && *(off - 1) != '\r' &&
|
|
|
|
*(off - 1) != '\n') || *(off + len) != ' '))
|
|
|
|
off = strstr(off + len, key);
|
|
|
|
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
2006-02-11 20:12:27 +08:00
|
|
|
static inline int write_key_value(int fd, const char *key, const char *value)
|
2005-05-07 03:56:46 +08:00
|
|
|
{
|
|
|
|
char *str;
|
2005-08-06 14:27:05 +08:00
|
|
|
size_t size;
|
|
|
|
int err = 0;
|
2005-08-05 16:43:42 +08:00
|
|
|
|
2005-05-07 03:56:46 +08:00
|
|
|
size = strlen(key) + strlen(value) + 2;
|
|
|
|
|
2005-08-06 14:27:05 +08:00
|
|
|
str = malloc(size + 1);
|
2005-05-07 03:56:46 +08:00
|
|
|
if (!str)
|
|
|
|
return ENOMEM;
|
|
|
|
|
|
|
|
sprintf(str, "%s %s\n", key, value);
|
|
|
|
|
|
|
|
if (write(fd, str, size) < 0)
|
|
|
|
err = errno;
|
|
|
|
|
|
|
|
free(str);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2006-02-11 20:12:27 +08:00
|
|
|
static int write_key(const char *pathname, const char *key, const char *value)
|
2005-05-07 03:56:46 +08:00
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
char *map, *off, *end, *str;
|
|
|
|
off_t size, pos; size_t base, len;
|
|
|
|
int fd, err = 0;
|
|
|
|
|
|
|
|
fd = open(pathname, O_RDWR);
|
|
|
|
if (fd < 0)
|
|
|
|
return -errno;
|
|
|
|
|
|
|
|
if (flock(fd, LOCK_EX) < 0) {
|
|
|
|
err = errno;
|
|
|
|
goto close;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fstat(fd, &st) < 0) {
|
|
|
|
err = errno;
|
|
|
|
goto unlock;
|
|
|
|
}
|
|
|
|
|
|
|
|
size = st.st_size;
|
|
|
|
|
|
|
|
if (!size) {
|
2006-03-24 22:36:27 +08:00
|
|
|
if (value) {
|
|
|
|
pos = lseek(fd, size, SEEK_SET);
|
|
|
|
err = write_key_value(fd, key, value);
|
|
|
|
}
|
2005-05-07 03:56:46 +08:00
|
|
|
goto unlock;
|
|
|
|
}
|
|
|
|
|
2006-01-17 18:52:35 +08:00
|
|
|
map = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_LOCKED, fd, 0);
|
2005-11-09 08:04:15 +08:00
|
|
|
if (!map || map == MAP_FAILED) {
|
2005-05-07 03:56:46 +08:00
|
|
|
err = errno;
|
|
|
|
goto unlock;
|
|
|
|
}
|
|
|
|
|
2005-09-10 17:44:19 +08:00
|
|
|
off = find_key(map, key, strlen(key));
|
2005-05-07 03:56:46 +08:00
|
|
|
if (!off) {
|
2006-02-07 17:10:07 +08:00
|
|
|
if (value) {
|
|
|
|
munmap(map, size);
|
|
|
|
pos = lseek(fd, size, SEEK_SET);
|
|
|
|
err = write_key_value(fd, key, value);
|
|
|
|
}
|
2005-05-07 03:56:46 +08:00
|
|
|
goto unlock;
|
|
|
|
}
|
|
|
|
|
|
|
|
base = off - map;
|
|
|
|
|
|
|
|
end = strpbrk(off, "\r\n");
|
|
|
|
if (!end) {
|
|
|
|
err = EILSEQ;
|
|
|
|
goto unmap;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = strspn(end, "\r\n");
|
|
|
|
end += len;
|
|
|
|
|
|
|
|
len = size - (end - map);
|
2005-09-08 01:31:56 +08:00
|
|
|
if (!len) {
|
|
|
|
munmap(map, size);
|
|
|
|
ftruncate(fd, base);
|
|
|
|
pos = lseek(fd, base, SEEK_SET);
|
2006-02-07 17:10:07 +08:00
|
|
|
if (value)
|
|
|
|
err = write_key_value(fd, key, value);
|
2005-09-08 01:31:56 +08:00
|
|
|
goto unlock;
|
|
|
|
}
|
2005-05-07 03:56:46 +08:00
|
|
|
|
2005-09-08 01:31:56 +08:00
|
|
|
if (len < 0 || len > size) {
|
2005-08-05 16:43:42 +08:00
|
|
|
err = EILSEQ;
|
|
|
|
goto unmap;
|
|
|
|
}
|
|
|
|
|
2005-05-07 03:56:46 +08:00
|
|
|
str = malloc(len);
|
|
|
|
if (!str) {
|
|
|
|
err = errno;
|
|
|
|
goto unmap;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(str, end, len);
|
|
|
|
|
2005-09-08 01:31:56 +08:00
|
|
|
munmap(map, size);
|
2005-05-07 03:56:46 +08:00
|
|
|
ftruncate(fd, base);
|
|
|
|
pos = lseek(fd, base, SEEK_SET);
|
2006-02-07 17:10:07 +08:00
|
|
|
if (value)
|
|
|
|
err = write_key_value(fd, key, value);
|
2005-05-07 03:56:46 +08:00
|
|
|
|
|
|
|
write(fd, str, len);
|
|
|
|
|
|
|
|
free(str);
|
|
|
|
|
|
|
|
goto unlock;
|
|
|
|
|
|
|
|
unmap:
|
|
|
|
munmap(map, size);
|
|
|
|
|
|
|
|
unlock:
|
|
|
|
flock(fd, LOCK_UN);
|
|
|
|
|
|
|
|
close:
|
|
|
|
close(fd);
|
|
|
|
errno = err;
|
|
|
|
|
|
|
|
return -err;
|
|
|
|
}
|
|
|
|
|
2006-02-11 20:12:27 +08:00
|
|
|
int textfile_put(const char *pathname, const char *key, const char *value)
|
2006-02-07 17:10:07 +08:00
|
|
|
{
|
|
|
|
return write_key(pathname, key, value);
|
|
|
|
}
|
|
|
|
|
2006-02-11 20:12:27 +08:00
|
|
|
int textfile_del(const char *pathname, const char *key)
|
2006-02-07 17:10:07 +08:00
|
|
|
{
|
|
|
|
return write_key(pathname, key, NULL);
|
|
|
|
}
|
|
|
|
|
2006-02-11 20:12:27 +08:00
|
|
|
char *textfile_get(const char *pathname, const char *key)
|
2005-04-22 20:15:36 +08:00
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
char *map, *off, *end, *str = NULL;
|
|
|
|
off_t size; size_t len;
|
2005-05-07 03:56:46 +08:00
|
|
|
int fd, err = 0;
|
2005-04-22 20:15:36 +08:00
|
|
|
|
|
|
|
fd = open(pathname, O_RDONLY);
|
|
|
|
if (fd < 0)
|
|
|
|
return NULL;
|
|
|
|
|
2005-05-07 03:56:46 +08:00
|
|
|
if (flock(fd, LOCK_SH) < 0) {
|
|
|
|
err = errno;
|
2005-04-22 20:15:36 +08:00
|
|
|
goto close;
|
2005-05-07 03:56:46 +08:00
|
|
|
}
|
2005-04-22 20:15:36 +08:00
|
|
|
|
2005-05-07 03:56:46 +08:00
|
|
|
if (fstat(fd, &st) < 0) {
|
|
|
|
err = errno;
|
2005-04-22 20:15:36 +08:00
|
|
|
goto unlock;
|
2005-05-07 03:56:46 +08:00
|
|
|
}
|
2005-04-22 20:15:36 +08:00
|
|
|
|
|
|
|
size = st.st_size;
|
|
|
|
|
2005-05-07 03:56:46 +08:00
|
|
|
map = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0);
|
2005-11-09 08:04:15 +08:00
|
|
|
if (!map || map == MAP_FAILED) {
|
2005-05-07 03:56:46 +08:00
|
|
|
err = errno;
|
|
|
|
goto unlock;
|
|
|
|
}
|
2005-04-22 20:15:36 +08:00
|
|
|
|
2005-09-10 17:44:19 +08:00
|
|
|
len = strlen(key);
|
|
|
|
off = find_key(map, key, len);
|
2005-05-07 03:56:46 +08:00
|
|
|
if (!off) {
|
|
|
|
err = EILSEQ;
|
2005-04-22 20:15:36 +08:00
|
|
|
goto unmap;
|
2005-05-07 03:56:46 +08:00
|
|
|
}
|
2005-04-22 20:15:36 +08:00
|
|
|
|
|
|
|
end = strpbrk(off, "\r\n");
|
2005-05-07 03:56:46 +08:00
|
|
|
if (!end) {
|
|
|
|
err = EILSEQ;
|
2005-04-22 20:15:36 +08:00
|
|
|
goto unmap;
|
2005-05-07 03:56:46 +08:00
|
|
|
}
|
2005-04-22 20:15:36 +08:00
|
|
|
|
|
|
|
str = malloc(end - off - len);
|
2005-05-07 03:56:46 +08:00
|
|
|
if (!str) {
|
|
|
|
err = EILSEQ;
|
2005-04-22 20:15:36 +08:00
|
|
|
goto unmap;
|
2005-05-07 03:56:46 +08:00
|
|
|
}
|
2005-04-22 20:15:36 +08:00
|
|
|
|
2005-05-07 03:56:46 +08:00
|
|
|
memset(str, 0, end - off - len);
|
2005-04-22 20:15:36 +08:00
|
|
|
strncpy(str, off + len + 1, end - off - len - 1);
|
|
|
|
|
|
|
|
unmap:
|
|
|
|
munmap(map, size);
|
|
|
|
|
|
|
|
unlock:
|
|
|
|
flock(fd, LOCK_UN);
|
|
|
|
|
|
|
|
close:
|
|
|
|
close(fd);
|
2005-05-07 03:56:46 +08:00
|
|
|
errno = err;
|
2005-04-22 20:15:36 +08:00
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
2006-02-08 13:38:38 +08:00
|
|
|
|
2006-02-11 20:12:27 +08:00
|
|
|
int textfile_foreach(const char *pathname,
|
2006-02-08 13:38:38 +08:00
|
|
|
void (*func)(char *key, char *value, void *data), void *data)
|
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
char *map, *off, *end, *key, *value;
|
|
|
|
off_t size; size_t len;
|
|
|
|
int fd, err = 0;
|
|
|
|
|
|
|
|
fd = open(pathname, O_RDONLY);
|
|
|
|
if (fd < 0)
|
|
|
|
return -errno;
|
|
|
|
|
|
|
|
if (flock(fd, LOCK_SH) < 0) {
|
|
|
|
err = errno;
|
|
|
|
goto close;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fstat(fd, &st) < 0) {
|
|
|
|
err = errno;
|
|
|
|
goto unlock;
|
|
|
|
}
|
|
|
|
|
|
|
|
size = st.st_size;
|
|
|
|
|
|
|
|
map = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0);
|
|
|
|
if (!map || map == MAP_FAILED) {
|
|
|
|
err = errno;
|
|
|
|
goto unlock;
|
|
|
|
}
|
|
|
|
|
|
|
|
off = map;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
end = strpbrk(off, " ");
|
|
|
|
if (!end) {
|
|
|
|
err = EILSEQ;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = end - off;
|
|
|
|
|
|
|
|
key = malloc(len + 1);
|
|
|
|
if (!key) {
|
|
|
|
err = errno;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(key, 0, len + 1);
|
|
|
|
memcpy(key, off, len);
|
|
|
|
|
|
|
|
off = end + 1;
|
|
|
|
|
|
|
|
end = strpbrk(off, "\r\n");
|
|
|
|
if (!end) {
|
|
|
|
err = EILSEQ;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = end - off;
|
|
|
|
|
|
|
|
value = malloc(len + 1);
|
|
|
|
if (!value) {
|
|
|
|
err = errno;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(value, 0, len + 1);
|
|
|
|
memcpy(value, off, len);
|
|
|
|
|
|
|
|
func(key, value, data);
|
|
|
|
|
|
|
|
free(key);
|
|
|
|
free(value);
|
|
|
|
|
|
|
|
off = end + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
munmap(map, size);
|
|
|
|
|
|
|
|
unlock:
|
|
|
|
flock(fd, LOCK_UN);
|
|
|
|
|
|
|
|
close:
|
|
|
|
close(fd);
|
|
|
|
errno = err;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|