yaffs: Fix directory unlinking in yaffs1 mode
[yaffs2.git] / yaffs_nameval.c
1 /*
2  * YAFFS: Yet Another Flash File System. A NAND-flash specific file system.
3  *
4  * Copyright (C) 2002-2011 Aleph One Ltd.
5  *   for Toby Churchill Ltd and Brightstar Engineering
6  *
7  * Created by Charles Manning <charles@aleph1.co.uk>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License version 2 as
11  * published by the Free Software Foundation.
12  */
13
14 /*
15  * This simple implementation of a name-value store assumes a small number of
16 * values and fits into a small finite buffer.
17  *
18  * Each attribute is stored as a record:
19  *  sizeof(int) bytes   record size.
20  *  strnlen+1 bytes name null terminated.
21  *  nbytes    value.
22  *  ----------
23  *  total size  stored in record size
24  *
25  * This code has not been tested with unicode yet.
26  */
27
28 #include "yaffs_nameval.h"
29
30 #include "yportenv.h"
31
32 static int nval_find(const char *xb, int xb_size, const YCHAR *name,
33                      int *exist_size)
34 {
35         int pos = 0;
36         int size;
37
38         memcpy(&size, xb, sizeof(int));
39         while (size > 0 && (size < xb_size) && (pos + size < xb_size)) {
40                 if (!strncmp((YCHAR *) (xb + pos + sizeof(int)), name, size)) {
41                         if (exist_size)
42                                 *exist_size = size;
43                         return pos;
44                 }
45                 pos += size;
46                 if (pos < xb_size - sizeof(int))
47                         memcpy(&size, xb + pos, sizeof(int));
48                 else
49                         size = 0;
50         }
51         if (exist_size)
52                 *exist_size = 0;
53         return -1;
54 }
55
56 static int nval_used(const char *xb, int xb_size)
57 {
58         int pos = 0;
59         int size;
60
61         memcpy(&size, xb + pos, sizeof(int));
62         while (size > 0 && (size < xb_size) && (pos + size < xb_size)) {
63                 pos += size;
64                 if (pos < xb_size - sizeof(int))
65                         memcpy(&size, xb + pos, sizeof(int));
66                 else
67                         size = 0;
68         }
69         return pos;
70 }
71
72 int nval_del(char *xb, int xb_size, const YCHAR *name)
73 {
74         int pos = nval_find(xb, xb_size, name, NULL);
75         int size;
76
77         if (pos >= 0 && pos < xb_size) {
78                 /* Find size, shift rest over this record,
79                  * then zero out the rest of buffer */
80                 memcpy(&size, xb + pos, sizeof(int));
81                 memcpy(xb + pos, xb + pos + size, xb_size - (pos + size));
82                 memset(xb + (xb_size - size), 0, size);
83                 return 0;
84         } else {
85                 return -ENODATA;
86         }
87 }
88
89 int nval_set(char *xb, int xb_size, const YCHAR *name, const char *buf,
90                 int bsize, int flags)
91 {
92         int pos;
93         int namelen = strnlen(name, xb_size);
94         int reclen;
95         int size_exist = 0;
96         int space;
97         int start;
98
99         pos = nval_find(xb, xb_size, name, &size_exist);
100
101         if (flags & XATTR_CREATE && pos >= 0)
102                 return -EEXIST;
103         if (flags & XATTR_REPLACE && pos < 0)
104                 return -ENODATA;
105
106         start = nval_used(xb, xb_size);
107         space = xb_size - start + size_exist;
108
109         reclen = (sizeof(int) + namelen + 1 + bsize);
110
111         if (reclen > space)
112                 return -ENOSPC;
113
114         if (pos >= 0) {
115                 nval_del(xb, xb_size, name);
116                 start = nval_used(xb, xb_size);
117         }
118
119         pos = start;
120
121         memcpy(xb + pos, &reclen, sizeof(int));
122         pos += sizeof(int);
123         strncpy((YCHAR *) (xb + pos), name, reclen);
124         pos += (namelen + 1);
125         memcpy(xb + pos, buf, bsize);
126         return 0;
127 }
128
129 int nval_get(const char *xb, int xb_size, const YCHAR * name, char *buf,
130              int bsize)
131 {
132         int pos = nval_find(xb, xb_size, name, NULL);
133         int size;
134
135         if (pos >= 0 && pos < xb_size) {
136
137                 memcpy(&size, xb + pos, sizeof(int));
138                 pos += sizeof(int);     /* advance past record length */
139                 size -= sizeof(int);
140
141                 /* Advance over name string */
142                 while (xb[pos] && size > 0 && pos < xb_size) {
143                         pos++;
144                         size--;
145                 }
146                 /*Advance over NUL */
147                 pos++;
148                 size--;
149
150                 if (size <= bsize) {
151                         memcpy(buf, xb + pos, size);
152                         return size;
153                 }
154         }
155         if (pos >= 0)
156                 return -ERANGE;
157
158         return -ENODATA;
159 }
160
161 int nval_list(const char *xb, int xb_size, char *buf, int bsize)
162 {
163         int pos = 0;
164         int size;
165         int name_len;
166         int ncopied = 0;
167         int filled = 0;
168
169         memcpy(&size, xb + pos, sizeof(int));
170         while (size > sizeof(int) &&
171                 size <= xb_size &&
172                 (pos + size) < xb_size &&
173                 !filled) {
174                 pos += sizeof(int);
175                 size -= sizeof(int);
176                 name_len = strnlen((YCHAR *) (xb + pos), size);
177                 if (ncopied + name_len + 1 < bsize) {
178                         memcpy(buf, xb + pos, name_len * sizeof(YCHAR));
179                         buf += name_len;
180                         *buf = '\0';
181                         buf++;
182                         if (sizeof(YCHAR) > 1) {
183                                 *buf = '\0';
184                                 buf++;
185                         }
186                         ncopied += (name_len + 1);
187                 } else {
188                         filled = 1;
189                 }
190                 pos += size;
191                 if (pos < xb_size - sizeof(int))
192                         memcpy(&size, xb + pos, sizeof(int));
193                 else
194                         size = 0;
195         }
196         return ncopied;
197 }
198
199 int nval_hasvalues(const char *xb, int xb_size)
200 {
201         return nval_used(xb, xb_size) > 0;
202 }