blob: 7112ebf51ff4c6efd87af9dc5d58aec60dab7a74 [file] [log] [blame]
Brian Swetland03ee9472010-08-12 18:01:08 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <stdio.h>
18#include <stdlib.h>
19#include <string.h>
20#include <unistd.h>
21#include <errno.h>
22#include <fcntl.h>
23#include <sys/mount.h>
24#include <sys/stat.h>
Mike Lockwood4553b082010-08-16 14:14:44 -040025#include <sys/statfs.h>
Brian Swetland03ee9472010-08-12 18:01:08 -070026#include <sys/uio.h>
27#include <dirent.h>
Mike Lockwood1bedb732011-01-13 13:38:42 -050028#include <ctype.h>
Brian Swetland03ee9472010-08-12 18:01:08 -070029
Brian Swetlandb14a2c62010-08-12 18:21:12 -070030#include <private/android_filesystem_config.h>
31
Brian Swetland03ee9472010-08-12 18:01:08 -070032#include "fuse.h"
33
34/* README
35 *
36 * What is this?
37 *
38 * sdcard is a program that uses FUSE to emulate FAT-on-sdcard style
39 * directory permissions (all files are given fixed owner, group, and
40 * permissions at creation, owner, group, and permissions are not
41 * changeable, symlinks and hardlinks are not createable, etc.
42 *
43 * usage: sdcard <path> <uid> <gid>
44 *
45 * It must be run as root, but will change to uid/gid as soon as it
Mike Lockwood4553b082010-08-16 14:14:44 -040046 * mounts a filesystem on /mnt/sdcard. It will refuse to run if uid or
Brian Swetland03ee9472010-08-12 18:01:08 -070047 * gid are zero.
48 *
49 *
50 * Things I believe to be true:
51 *
52 * - ops that return a fuse_entry (LOOKUP, MKNOD, MKDIR, LINK, SYMLINK,
53 * CREAT) must bump that node's refcount
54 * - don't forget that FORGET can forget multiple references (req->nlookup)
55 * - if an op that returns a fuse_entry fails writing the reply to the
56 * kernel, you must rollback the refcount to reflect the reference the
57 * kernel did not actually acquire
58 *
Brian Swetland03ee9472010-08-12 18:01:08 -070059 */
60
61#define FUSE_TRACE 0
62
63#if FUSE_TRACE
64#define TRACE(x...) fprintf(stderr,x)
65#else
66#define TRACE(x...) do {} while (0)
67#endif
68
69#define ERROR(x...) fprintf(stderr,x)
70
71#define FUSE_UNKNOWN_INO 0xffffffff
72
Mike Lockwood4553b082010-08-16 14:14:44 -040073#define MOUNT_POINT "/mnt/sdcard"
74
Brian Swetland03ee9472010-08-12 18:01:08 -070075struct handle {
76 struct node *node;
77 int fd;
78};
79
80struct dirhandle {
81 struct node *node;
82 DIR *d;
83};
84
85struct node {
86 __u64 nid;
87 __u64 gen;
88
Paul Eastham11ccdb32010-10-14 11:04:26 -070089 struct node *next; /* per-dir sibling list */
90 struct node *child; /* first contained file by this dir */
91 struct node *all; /* global node list */
92 struct node *parent; /* containing directory */
Brian Swetland03ee9472010-08-12 18:01:08 -070093
94 __u32 refcount;
95 __u32 namelen;
96
Paul Eastham11ccdb32010-10-14 11:04:26 -070097 char *name;
Mike Lockwood575a2bb2011-01-23 14:46:30 -080098 /* If non-null, this is the real name of the file in the underlying storage.
99 * This may differ from the field "name" only by case.
100 * strlen(actual_name) will always equal strlen(name), so it is safe to use
101 * namelen for both fields.
102 */
103 char *actual_name;
Brian Swetland03ee9472010-08-12 18:01:08 -0700104};
105
106struct fuse {
107 __u64 next_generation;
108 __u64 next_node_id;
109
110 int fd;
111
112 struct node *all;
113
114 struct node root;
115 char rootpath[1024];
116};
117
Mike Lockwood1bedb732011-01-13 13:38:42 -0500118static unsigned uid = -1;
119static unsigned gid = -1;
Mike Lockwood4f35e622011-01-12 14:39:44 -0500120
Brian Swetland03ee9472010-08-12 18:01:08 -0700121#define PATH_BUFFER_SIZE 1024
122
Mike Lockwood575a2bb2011-01-23 14:46:30 -0800123#define NO_CASE_SENSITIVE_MATCH 0
124#define CASE_SENSITIVE_MATCH 1
Mike Lockwoodb94d3202011-01-17 21:06:26 -0800125
Paul Easthamf43219e2010-09-21 17:14:31 -0700126/*
127 * Get the real-life absolute path to a node.
128 * node: start at this node
129 * buf: storage for returned string
130 * name: append this string to path if set
131 */
Mike Lockwood575a2bb2011-01-23 14:46:30 -0800132char *do_node_get_path(struct node *node, char *buf, const char *name, int match_case_insensitive)
Brian Swetland03ee9472010-08-12 18:01:08 -0700133{
Mike Lockwood575a2bb2011-01-23 14:46:30 -0800134 struct node *in_node = node;
135 const char *in_name = name;
Brian Swetland03ee9472010-08-12 18:01:08 -0700136 char *out = buf + PATH_BUFFER_SIZE - 1;
137 int len;
138 out[0] = 0;
139
140 if (name) {
141 len = strlen(name);
142 goto start;
143 }
144
145 while (node) {
Mike Lockwood575a2bb2011-01-23 14:46:30 -0800146 name = (node->actual_name ? node->actual_name : node->name);
Brian Swetland03ee9472010-08-12 18:01:08 -0700147 len = node->namelen;
148 node = node->parent;
149 start:
150 if ((len + 1) > (out - buf))
151 return 0;
152 out -= len;
153 memcpy(out, name, len);
Mike Lockwood575a2bb2011-01-23 14:46:30 -0800154 /* avoid double slash at beginning of path */
155 if (out[0] != '/') {
156 out --;
157 out[0] = '/';
158 }
Brian Swetland03ee9472010-08-12 18:01:08 -0700159 }
160
Mike Lockwood575a2bb2011-01-23 14:46:30 -0800161 /* If we are searching for a file within node (rather than computing node's path)
162 * and fail, then we need to look for a case insensitive match.
163 */
164 if (in_name && match_case_insensitive && access(out, F_OK) != 0) {
165 char *path, buffer[PATH_BUFFER_SIZE];
166 DIR* dir;
167 struct dirent* entry;
168 path = do_node_get_path(in_node, buffer, NULL, NO_CASE_SENSITIVE_MATCH);
169 dir = opendir(path);
170 if (!dir) {
171 ERROR("opendir %s failed: %s", path, strerror(errno));
172 return out;
173 }
174
175 while ((entry = readdir(dir))) {
176 if (!strcasecmp(entry->d_name, in_name)) {
177 /* we have a match - replace the name */
178 len = strlen(in_name);
179 memcpy(buf + PATH_BUFFER_SIZE - len - 1, entry->d_name, len);
180 break;
181 }
182 }
183 closedir(dir);
184 }
185
186 return out;
187}
188
189char *node_get_path(struct node *node, char *buf, const char *name)
190{
191 /* We look for case insensitive matches by default */
192 return do_node_get_path(node, buf, name, CASE_SENSITIVE_MATCH);
Brian Swetland03ee9472010-08-12 18:01:08 -0700193}
194
195void attr_from_stat(struct fuse_attr *attr, struct stat *s)
196{
197 attr->ino = s->st_ino;
198 attr->size = s->st_size;
199 attr->blocks = s->st_blocks;
Mike Lockwood4553b082010-08-16 14:14:44 -0400200 attr->atime = s->st_atime;
201 attr->mtime = s->st_mtime;
202 attr->ctime = s->st_ctime;
203 attr->atimensec = s->st_atime_nsec;
204 attr->mtimensec = s->st_mtime_nsec;
205 attr->ctimensec = s->st_ctime_nsec;
Brian Swetland03ee9472010-08-12 18:01:08 -0700206 attr->mode = s->st_mode;
207 attr->nlink = s->st_nlink;
Brian Swetland03ee9472010-08-12 18:01:08 -0700208
Brian Swetlandb14a2c62010-08-12 18:21:12 -0700209 /* force permissions to something reasonable:
210 * world readable
211 * writable by the sdcard group
212 */
213 if (attr->mode & 0100) {
214 attr->mode = (attr->mode & (~0777)) | 0775;
215 } else {
216 attr->mode = (attr->mode & (~0777)) | 0664;
217 }
218
219 /* all files owned by root.sdcard */
220 attr->uid = 0;
221 attr->gid = AID_SDCARD_RW;
Brian Swetland03ee9472010-08-12 18:01:08 -0700222}
223
224int node_get_attr(struct node *node, struct fuse_attr *attr)
225{
226 int res;
227 struct stat s;
228 char *path, buffer[PATH_BUFFER_SIZE];
229
230 path = node_get_path(node, buffer, 0);
231 res = lstat(path, &s);
232 if (res < 0) {
233 ERROR("lstat('%s') errno %d\n", path, errno);
234 return -1;
235 }
236
237 attr_from_stat(attr, &s);
238 attr->ino = node->nid;
239
240 return 0;
241}
242
Paul Eastham11ccdb32010-10-14 11:04:26 -0700243static void add_node_to_parent(struct node *node, struct node *parent) {
244 node->parent = parent;
245 node->next = parent->child;
246 parent->child = node;
Paul Eastham77085c52011-01-04 21:06:03 -0800247 parent->refcount++;
Paul Eastham11ccdb32010-10-14 11:04:26 -0700248}
249
Mike Lockwood575a2bb2011-01-23 14:46:30 -0800250/* Check to see if our parent directory already has a file with a name
251 * that differs only by case. If we find one, store it in the actual_name
252 * field so node_get_path will map it to this file in the underlying storage.
253 */
254static void node_find_actual_name(struct node *node)
255{
256 char *path, buffer[PATH_BUFFER_SIZE];
257 const char *node_name = node->name;
258 DIR* dir;
259 struct dirent* entry;
260
261 if (!node->parent) return;
262
263 path = node_get_path(node->parent, buffer, 0);
264 dir = opendir(path);
265 if (!dir) {
266 ERROR("opendir %s failed: %s", path, strerror(errno));
267 return;
268 }
269
270 while ((entry = readdir(dir))) {
271 const char *test_name = entry->d_name;
272 if (strcmp(test_name, node_name) && !strcasecmp(test_name, node_name)) {
273 /* we have a match - differs but only by case */
274 node->actual_name = strdup(test_name);
275 if (!node->actual_name) {
276 ERROR("strdup failed - out of memory\n");
277 exit(1);
278 }
279 break;
280 }
281 }
282 closedir(dir);
283}
284
Brian Swetland03ee9472010-08-12 18:01:08 -0700285struct node *node_create(struct node *parent, const char *name, __u64 nid, __u64 gen)
286{
287 struct node *node;
288 int namelen = strlen(name);
289
Paul Eastham11ccdb32010-10-14 11:04:26 -0700290 node = calloc(1, sizeof(struct node));
Brian Swetland03ee9472010-08-12 18:01:08 -0700291 if (node == 0) {
292 return 0;
293 }
Paul Eastham11ccdb32010-10-14 11:04:26 -0700294 node->name = malloc(namelen + 1);
295 if (node->name == 0) {
296 free(node);
297 return 0;
298 }
Brian Swetland03ee9472010-08-12 18:01:08 -0700299
300 node->nid = nid;
301 node->gen = gen;
Paul Eastham11ccdb32010-10-14 11:04:26 -0700302 add_node_to_parent(node, parent);
Brian Swetland03ee9472010-08-12 18:01:08 -0700303 memcpy(node->name, name, namelen + 1);
304 node->namelen = namelen;
Mike Lockwood575a2bb2011-01-23 14:46:30 -0800305 node_find_actual_name(node);
Brian Swetland03ee9472010-08-12 18:01:08 -0700306 return node;
307}
308
Paul Eastham11ccdb32010-10-14 11:04:26 -0700309static char *rename_node(struct node *node, const char *name)
310{
311 node->namelen = strlen(name);
312 char *newname = realloc(node->name, node->namelen + 1);
313 if (newname == 0)
314 return 0;
315 node->name = newname;
316 memcpy(node->name, name, node->namelen + 1);
Mike Lockwood575a2bb2011-01-23 14:46:30 -0800317 node_find_actual_name(node);
Paul Eastham11ccdb32010-10-14 11:04:26 -0700318 return node->name;
319}
320
Brian Swetland03ee9472010-08-12 18:01:08 -0700321void fuse_init(struct fuse *fuse, int fd, const char *path)
322{
323 fuse->fd = fd;
324 fuse->next_node_id = 2;
325 fuse->next_generation = 0;
326
327 fuse->all = &fuse->root;
328
329 fuse->root.nid = FUSE_ROOT_ID; /* 1 */
330 fuse->root.next = 0;
331 fuse->root.child = 0;
332 fuse->root.parent = 0;
333
334 fuse->root.all = 0;
335 fuse->root.refcount = 2;
336
Paul Eastham11ccdb32010-10-14 11:04:26 -0700337 fuse->root.name = 0;
338 rename_node(&fuse->root, path);
Brian Swetland03ee9472010-08-12 18:01:08 -0700339}
340
341static inline void *id_to_ptr(__u64 nid)
342{
343 return (void *) nid;
344}
345
346static inline __u64 ptr_to_id(void *ptr)
347{
348 return (__u64) ptr;
349}
350
351
352struct node *lookup_by_inode(struct fuse *fuse, __u64 nid)
353{
354 if (nid == FUSE_ROOT_ID) {
355 return &fuse->root;
356 } else {
357 return id_to_ptr(nid);
358 }
359}
360
361struct node *lookup_child_by_name(struct node *node, const char *name)
362{
363 for (node = node->child; node; node = node->next) {
364 if (!strcmp(name, node->name)) {
365 return node;
366 }
367 }
368 return 0;
369}
370
371struct node *lookup_child_by_inode(struct node *node, __u64 nid)
372{
373 for (node = node->child; node; node = node->next) {
374 if (node->nid == nid) {
375 return node;
376 }
377 }
378 return 0;
379}
380
Paul Eastham77085c52011-01-04 21:06:03 -0800381static void dec_refcount(struct node *node) {
382 if (node->refcount > 0) {
383 node->refcount--;
384 TRACE("dec_refcount %p(%s) -> %d\n", node, node->name, node->refcount);
385 } else {
386 ERROR("Zero refcnt %p\n", node);
387 }
388 }
389
Paul Eastham11ccdb32010-10-14 11:04:26 -0700390static struct node *remove_child(struct node *parent, __u64 nid)
391{
392 struct node *prev = 0;
393 struct node *node;
394
395 for (node = parent->child; node; node = node->next) {
396 if (node->nid == nid) {
397 if (prev) {
398 prev->next = node->next;
399 } else {
400 parent->child = node->next;
401 }
402 node->next = 0;
403 node->parent = 0;
Paul Eastham77085c52011-01-04 21:06:03 -0800404 dec_refcount(parent);
Paul Eastham11ccdb32010-10-14 11:04:26 -0700405 return node;
406 }
407 prev = node;
408 }
409 return 0;
410}
411
Brian Swetland03ee9472010-08-12 18:01:08 -0700412struct node *node_lookup(struct fuse *fuse, struct node *parent, const char *name,
413 struct fuse_attr *attr)
414{
415 int res;
416 struct stat s;
417 char *path, buffer[PATH_BUFFER_SIZE];
418 struct node *node;
419
420 path = node_get_path(parent, buffer, name);
421 /* XXX error? */
422
423 res = lstat(path, &s);
424 if (res < 0)
425 return 0;
426
427 node = lookup_child_by_name(parent, name);
428 if (!node) {
429 node = node_create(parent, name, fuse->next_node_id++, fuse->next_generation++);
430 if (!node)
431 return 0;
432 node->nid = ptr_to_id(node);
433 node->all = fuse->all;
434 fuse->all = node;
435 }
436
437 attr_from_stat(attr, &s);
438 attr->ino = node->nid;
439
440 return node;
441}
442
443void node_release(struct node *node)
444{
445 TRACE("RELEASE %p (%s) rc=%d\n", node, node->name, node->refcount);
Paul Eastham77085c52011-01-04 21:06:03 -0800446 dec_refcount(node);
Brian Swetland03ee9472010-08-12 18:01:08 -0700447 if (node->refcount == 0) {
448 if (node->parent->child == node) {
449 node->parent->child = node->parent->child->next;
450 } else {
451 struct node *node2;
452
453 node2 = node->parent->child;
454 while (node2->next != node)
455 node2 = node2->next;
456 node2->next = node->next;
457 }
458
459 TRACE("DESTROY %p (%s)\n", node, node->name);
460
461 node_release(node->parent);
462
463 node->parent = 0;
464 node->next = 0;
465
466 /* TODO: remove debugging - poison memory */
Paul Eastham11ccdb32010-10-14 11:04:26 -0700467 memset(node->name, 0xef, node->namelen);
468 free(node->name);
Mike Lockwood575a2bb2011-01-23 14:46:30 -0800469 free(node->actual_name);
Paul Eastham77085c52011-01-04 21:06:03 -0800470 memset(node, 0xfc, sizeof(*node));
Brian Swetland03ee9472010-08-12 18:01:08 -0700471 free(node);
472 }
473}
474
475void fuse_status(struct fuse *fuse, __u64 unique, int err)
476{
477 struct fuse_out_header hdr;
478 hdr.len = sizeof(hdr);
479 hdr.error = err;
480 hdr.unique = unique;
481 if (err) {
482// ERROR("*** %d ***\n", err);
483 }
484 write(fuse->fd, &hdr, sizeof(hdr));
485}
486
487void fuse_reply(struct fuse *fuse, __u64 unique, void *data, int len)
488{
489 struct fuse_out_header hdr;
490 struct iovec vec[2];
491 int res;
492
493 hdr.len = len + sizeof(hdr);
494 hdr.error = 0;
495 hdr.unique = unique;
496
497 vec[0].iov_base = &hdr;
498 vec[0].iov_len = sizeof(hdr);
499 vec[1].iov_base = data;
500 vec[1].iov_len = len;
501
502 res = writev(fuse->fd, vec, 2);
503 if (res < 0) {
504 ERROR("*** REPLY FAILED *** %d\n", errno);
505 }
506}
507
508void lookup_entry(struct fuse *fuse, struct node *node,
509 const char *name, __u64 unique)
510{
511 struct fuse_entry_out out;
512
513 memset(&out, 0, sizeof(out));
514
515 node = node_lookup(fuse, node, name, &out.attr);
516 if (!node) {
517 fuse_status(fuse, unique, -ENOENT);
518 return;
519 }
520
521 node->refcount++;
522// fprintf(stderr,"ACQUIRE %p (%s) rc=%d\n", node, node->name, node->refcount);
523 out.nodeid = node->nid;
524 out.generation = node->gen;
525 out.entry_valid = 10;
526 out.attr_valid = 10;
527
528 fuse_reply(fuse, unique, &out, sizeof(out));
529}
530
531void handle_fuse_request(struct fuse *fuse, struct fuse_in_header *hdr, void *data, unsigned len)
532{
533 struct node *node;
534
535 if ((len < sizeof(*hdr)) || (hdr->len != len)) {
536 ERROR("malformed header\n");
537 return;
538 }
539
540 len -= hdr->len;
541
542 if (hdr->nodeid) {
543 node = lookup_by_inode(fuse, hdr->nodeid);
544 if (!node) {
545 fuse_status(fuse, hdr->unique, -ENOENT);
546 return;
547 }
548 } else {
549 node = 0;
550 }
551
552 switch (hdr->opcode) {
553 case FUSE_LOOKUP: { /* bytez[] -> entry_out */
554 TRACE("LOOKUP %llx %s\n", hdr->nodeid, (char*) data);
555 lookup_entry(fuse, node, (char*) data, hdr->unique);
556 return;
557 }
558 case FUSE_FORGET: {
559 struct fuse_forget_in *req = data;
560 TRACE("FORGET %llx (%s) #%lld\n", hdr->nodeid, node->name, req->nlookup);
561 /* no reply */
562 while (req->nlookup--)
563 node_release(node);
564 return;
565 }
566 case FUSE_GETATTR: { /* getattr_in -> attr_out */
567 struct fuse_getattr_in *req = data;
568 struct fuse_attr_out out;
569
Paul Eastham11ccdb32010-10-14 11:04:26 -0700570 TRACE("GETATTR flags=%x fh=%llx\n", req->getattr_flags, req->fh);
Brian Swetland03ee9472010-08-12 18:01:08 -0700571
572 memset(&out, 0, sizeof(out));
573 node_get_attr(node, &out.attr);
574 out.attr_valid = 10;
575
576 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
577 return;
578 }
579 case FUSE_SETATTR: { /* setattr_in -> attr_out */
580 struct fuse_setattr_in *req = data;
581 struct fuse_attr_out out;
Paul Easthamf43219e2010-09-21 17:14:31 -0700582 char *path, buffer[PATH_BUFFER_SIZE];
583 int res = 0;
Ken Sumrall97919652011-03-18 11:53:15 -0700584 struct timespec times[2];
Paul Easthamf43219e2010-09-21 17:14:31 -0700585
Brian Swetland03ee9472010-08-12 18:01:08 -0700586 TRACE("SETATTR fh=%llx id=%llx valid=%x\n",
587 req->fh, hdr->nodeid, req->valid);
588
Ken Sumrall97919652011-03-18 11:53:15 -0700589 /* XXX: incomplete implementation on purpose. chmod/chown
590 * should NEVER be implemented.*/
Paul Easthamf43219e2010-09-21 17:14:31 -0700591
592 path = node_get_path(node, buffer, 0);
593 if (req->valid & FATTR_SIZE)
594 res = truncate(path, req->size);
Ken Sumrall97919652011-03-18 11:53:15 -0700595 if (res)
596 goto getout;
Brian Swetland03ee9472010-08-12 18:01:08 -0700597
Ken Sumrall97919652011-03-18 11:53:15 -0700598 /* Handle changing atime and mtime. If FATTR_ATIME_and FATTR_ATIME_NOW
599 * are both set, then set it to the current time. Else, set it to the
600 * time specified in the request. Same goes for mtime. Use utimensat(2)
601 * as it allows ATIME and MTIME to be changed independently, and has
602 * nanosecond resolution which fuse also has.
603 */
604 if (req->valid & (FATTR_ATIME | FATTR_MTIME)) {
605 times[0].tv_nsec = UTIME_OMIT;
606 times[1].tv_nsec = UTIME_OMIT;
607 if (req->valid & FATTR_ATIME) {
608 if (req->valid & FATTR_ATIME_NOW) {
609 times[0].tv_nsec = UTIME_NOW;
610 } else {
611 times[0].tv_sec = req->atime;
612 times[0].tv_nsec = req->atimensec;
613 }
614 }
615 if (req->valid & FATTR_MTIME) {
616 if (req->valid & FATTR_MTIME_NOW) {
617 times[1].tv_nsec = UTIME_NOW;
618 } else {
619 times[1].tv_sec = req->mtime;
620 times[1].tv_nsec = req->mtimensec;
621 }
622 }
623 TRACE("Calling utimensat on %s with atime %ld, mtime=%ld\n", path, times[0].tv_sec, times[1].tv_sec);
624 res = utimensat(-1, path, times, 0);
625 }
626
627 getout:
Brian Swetland03ee9472010-08-12 18:01:08 -0700628 memset(&out, 0, sizeof(out));
629 node_get_attr(node, &out.attr);
630 out.attr_valid = 10;
Paul Easthamf43219e2010-09-21 17:14:31 -0700631
632 if (res)
633 fuse_status(fuse, hdr->unique, -errno);
634 else
635 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
Brian Swetland03ee9472010-08-12 18:01:08 -0700636 return;
637 }
638// case FUSE_READLINK:
639// case FUSE_SYMLINK:
640 case FUSE_MKNOD: { /* mknod_in, bytez[] -> entry_out */
641 struct fuse_mknod_in *req = data;
642 char *path, buffer[PATH_BUFFER_SIZE];
643 char *name = ((char*) data) + sizeof(*req);
644 int res;
Mike Lockwood51b3a2d2011-01-12 07:35:46 -0500645
Brian Swetland03ee9472010-08-12 18:01:08 -0700646 TRACE("MKNOD %s @ %llx\n", name, hdr->nodeid);
647 path = node_get_path(node, buffer, name);
648
649 req->mode = (req->mode & (~0777)) | 0664;
650 res = mknod(path, req->mode, req->rdev); /* XXX perm?*/
651 if (res < 0) {
652 fuse_status(fuse, hdr->unique, -errno);
653 } else {
654 lookup_entry(fuse, node, name, hdr->unique);
655 }
656 return;
657 }
658 case FUSE_MKDIR: { /* mkdir_in, bytez[] -> entry_out */
659 struct fuse_mkdir_in *req = data;
660 struct fuse_entry_out out;
661 char *path, buffer[PATH_BUFFER_SIZE];
662 char *name = ((char*) data) + sizeof(*req);
663 int res;
Mike Lockwood51b3a2d2011-01-12 07:35:46 -0500664
Brian Swetland03ee9472010-08-12 18:01:08 -0700665 TRACE("MKDIR %s @ %llx 0%o\n", name, hdr->nodeid, req->mode);
666 path = node_get_path(node, buffer, name);
667
668 req->mode = (req->mode & (~0777)) | 0775;
669 res = mkdir(path, req->mode);
670 if (res < 0) {
671 fuse_status(fuse, hdr->unique, -errno);
672 } else {
673 lookup_entry(fuse, node, name, hdr->unique);
674 }
675 return;
676 }
677 case FUSE_UNLINK: { /* bytez[] -> */
678 char *path, buffer[PATH_BUFFER_SIZE];
679 int res;
680 TRACE("UNLINK %s @ %llx\n", (char*) data, hdr->nodeid);
681 path = node_get_path(node, buffer, (char*) data);
682 res = unlink(path);
683 fuse_status(fuse, hdr->unique, res ? -errno : 0);
684 return;
685 }
686 case FUSE_RMDIR: { /* bytez[] -> */
687 char *path, buffer[PATH_BUFFER_SIZE];
688 int res;
689 TRACE("RMDIR %s @ %llx\n", (char*) data, hdr->nodeid);
690 path = node_get_path(node, buffer, (char*) data);
691 res = rmdir(path);
692 fuse_status(fuse, hdr->unique, res ? -errno : 0);
693 return;
694 }
695 case FUSE_RENAME: { /* rename_in, oldname, newname -> */
696 struct fuse_rename_in *req = data;
697 char *oldname = ((char*) data) + sizeof(*req);
698 char *newname = oldname + strlen(oldname) + 1;
699 char *oldpath, oldbuffer[PATH_BUFFER_SIZE];
700 char *newpath, newbuffer[PATH_BUFFER_SIZE];
Paul Eastham11ccdb32010-10-14 11:04:26 -0700701 struct node *target;
702 struct node *newparent;
Brian Swetland03ee9472010-08-12 18:01:08 -0700703 int res;
704
Paul Eastham11ccdb32010-10-14 11:04:26 -0700705 TRACE("RENAME %s->%s @ %llx\n", oldname, newname, hdr->nodeid);
706
707 target = lookup_child_by_name(node, oldname);
708 if (!target) {
Brian Swetland03ee9472010-08-12 18:01:08 -0700709 fuse_status(fuse, hdr->unique, -ENOENT);
710 return;
711 }
Brian Swetland03ee9472010-08-12 18:01:08 -0700712 oldpath = node_get_path(node, oldbuffer, oldname);
Paul Eastham11ccdb32010-10-14 11:04:26 -0700713
714 newparent = lookup_by_inode(fuse, req->newdir);
715 if (!newparent) {
716 fuse_status(fuse, hdr->unique, -ENOENT);
717 return;
718 }
Mike Lockwood575a2bb2011-01-23 14:46:30 -0800719 if (newparent == node) {
720 /* Special case for renaming a file where destination
721 * is same path differing only by case.
722 * In this case we don't want to look for a case insensitive match.
723 * This allows commands like "mv foo FOO" to work as expected.
724 */
725 newpath = do_node_get_path(newparent, newbuffer, newname, NO_CASE_SENSITIVE_MATCH);
726 } else {
727 newpath = node_get_path(newparent, newbuffer, newname);
728 }
Paul Eastham11ccdb32010-10-14 11:04:26 -0700729
730 if (!remove_child(node, target->nid)) {
731 ERROR("RENAME remove_child not found");
732 fuse_status(fuse, hdr->unique, -ENOENT);
733 return;
734 }
735 if (!rename_node(target, newname)) {
736 fuse_status(fuse, hdr->unique, -ENOMEM);
737 return;
738 }
739 add_node_to_parent(target, newparent);
Brian Swetland03ee9472010-08-12 18:01:08 -0700740
741 res = rename(oldpath, newpath);
Paul Eastham11ccdb32010-10-14 11:04:26 -0700742 TRACE("RENAME result %d\n", res);
743
Brian Swetland03ee9472010-08-12 18:01:08 -0700744 fuse_status(fuse, hdr->unique, res ? -errno : 0);
745 return;
746 }
747// case FUSE_LINK:
748 case FUSE_OPEN: { /* open_in -> open_out */
749 struct fuse_open_in *req = data;
750 struct fuse_open_out out;
751 char *path, buffer[PATH_BUFFER_SIZE];
752 struct handle *h;
753
754 h = malloc(sizeof(*h));
755 if (!h) {
756 fuse_status(fuse, hdr->unique, -ENOMEM);
757 return;
758 }
759
760 path = node_get_path(node, buffer, 0);
761 TRACE("OPEN %llx '%s' 0%o fh=%p\n", hdr->nodeid, path, req->flags, h);
762 h->fd = open(path, req->flags);
763 if (h->fd < 0) {
764 ERROR("ERROR\n");
765 fuse_status(fuse, hdr->unique, errno);
766 free(h);
767 return;
768 }
769 out.fh = ptr_to_id(h);
770 out.open_flags = 0;
771 out.padding = 0;
772 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
773 return;
774 }
775 case FUSE_READ: { /* read_in -> byte[] */
776 char buffer[128 * 1024];
777 struct fuse_read_in *req = data;
778 struct handle *h = id_to_ptr(req->fh);
779 int res;
780 TRACE("READ %p(%d) %u@%llu\n", h, h->fd, req->size, req->offset);
781 if (req->size > sizeof(buffer)) {
782 fuse_status(fuse, hdr->unique, -EINVAL);
783 return;
784 }
Kenny Root90749772011-01-11 15:38:31 -0800785 res = pread64(h->fd, buffer, req->size, req->offset);
Brian Swetland03ee9472010-08-12 18:01:08 -0700786 if (res < 0) {
787 fuse_status(fuse, hdr->unique, errno);
788 return;
789 }
790 fuse_reply(fuse, hdr->unique, buffer, res);
791 return;
792 }
793 case FUSE_WRITE: { /* write_in, byte[write_in.size] -> write_out */
794 struct fuse_write_in *req = data;
795 struct fuse_write_out out;
796 struct handle *h = id_to_ptr(req->fh);
797 int res;
798 TRACE("WRITE %p(%d) %u@%llu\n", h, h->fd, req->size, req->offset);
Kenny Root90749772011-01-11 15:38:31 -0800799 res = pwrite64(h->fd, ((char*) data) + sizeof(*req), req->size, req->offset);
Brian Swetland03ee9472010-08-12 18:01:08 -0700800 if (res < 0) {
801 fuse_status(fuse, hdr->unique, errno);
802 return;
803 }
804 out.size = res;
805 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
806 goto oops;
807 }
Mike Lockwood4553b082010-08-16 14:14:44 -0400808 case FUSE_STATFS: { /* getattr_in -> attr_out */
809 struct statfs stat;
810 struct fuse_statfs_out out;
811 int res;
812
813 TRACE("STATFS\n");
814
815 if (statfs(fuse->root.name, &stat)) {
816 fuse_status(fuse, hdr->unique, -errno);
817 return;
818 }
819
820 memset(&out, 0, sizeof(out));
821 out.st.blocks = stat.f_blocks;
822 out.st.bfree = stat.f_bfree;
823 out.st.bavail = stat.f_bavail;
824 out.st.files = stat.f_files;
825 out.st.ffree = stat.f_ffree;
826 out.st.bsize = stat.f_bsize;
827 out.st.namelen = stat.f_namelen;
828 out.st.frsize = stat.f_frsize;
829 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
830 return;
831 }
Brian Swetland03ee9472010-08-12 18:01:08 -0700832 case FUSE_RELEASE: { /* release_in -> */
833 struct fuse_release_in *req = data;
834 struct handle *h = id_to_ptr(req->fh);
835 TRACE("RELEASE %p(%d)\n", h, h->fd);
836 close(h->fd);
837 free(h);
838 fuse_status(fuse, hdr->unique, 0);
839 return;
840 }
841// case FUSE_FSYNC:
842// case FUSE_SETXATTR:
843// case FUSE_GETXATTR:
844// case FUSE_LISTXATTR:
845// case FUSE_REMOVEXATTR:
846 case FUSE_FLUSH:
847 fuse_status(fuse, hdr->unique, 0);
848 return;
849 case FUSE_OPENDIR: { /* open_in -> open_out */
850 struct fuse_open_in *req = data;
851 struct fuse_open_out out;
852 char *path, buffer[PATH_BUFFER_SIZE];
853 struct dirhandle *h;
854
855 h = malloc(sizeof(*h));
856 if (!h) {
857 fuse_status(fuse, hdr->unique, -ENOMEM);
858 return;
859 }
860
861 path = node_get_path(node, buffer, 0);
862 TRACE("OPENDIR %llx '%s'\n", hdr->nodeid, path);
863 h->d = opendir(path);
864 if (h->d == 0) {
865 ERROR("ERROR\n");
866 fuse_status(fuse, hdr->unique, -errno);
867 free(h);
868 return;
869 }
870 out.fh = ptr_to_id(h);
871 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
872 return;
873 }
874 case FUSE_READDIR: {
875 struct fuse_read_in *req = data;
876 char buffer[8192];
877 struct fuse_dirent *fde = (struct fuse_dirent*) buffer;
878 struct dirent *de;
879 struct dirhandle *h = id_to_ptr(req->fh);
880 TRACE("READDIR %p\n", h);
Mike Lockwood75e17a82011-01-25 17:22:47 -0800881 if (req->offset == 0) {
882 /* rewinddir() might have been called above us, so rewind here too */
883 TRACE("calling rewinddir()\n");
884 rewinddir(h->d);
885 }
Brian Swetland03ee9472010-08-12 18:01:08 -0700886 de = readdir(h->d);
887 if (!de) {
888 fuse_status(fuse, hdr->unique, 0);
889 return;
890 }
891 fde->ino = FUSE_UNKNOWN_INO;
Mike Lockwood75e17a82011-01-25 17:22:47 -0800892 /* increment the offset so we can detect when rewinddir() seeks back to the beginning */
893 fde->off = req->offset + 1;
Brian Swetland03ee9472010-08-12 18:01:08 -0700894 fde->type = de->d_type;
895 fde->namelen = strlen(de->d_name);
896 memcpy(fde->name, de->d_name, fde->namelen + 1);
897 fuse_reply(fuse, hdr->unique, fde,
898 FUSE_DIRENT_ALIGN(sizeof(struct fuse_dirent) + fde->namelen));
899 return;
900 }
901 case FUSE_RELEASEDIR: { /* release_in -> */
902 struct fuse_release_in *req = data;
903 struct dirhandle *h = id_to_ptr(req->fh);
904 TRACE("RELEASEDIR %p\n",h);
905 closedir(h->d);
906 free(h);
907 fuse_status(fuse, hdr->unique, 0);
908 return;
909 }
910// case FUSE_FSYNCDIR:
911 case FUSE_INIT: { /* init_in -> init_out */
912 struct fuse_init_in *req = data;
913 struct fuse_init_out out;
914
915 TRACE("INIT ver=%d.%d maxread=%d flags=%x\n",
916 req->major, req->minor, req->max_readahead, req->flags);
917
918 out.major = FUSE_KERNEL_VERSION;
919 out.minor = FUSE_KERNEL_MINOR_VERSION;
920 out.max_readahead = req->max_readahead;
Mike Lockwoodfc1a13b2010-08-20 10:29:29 -0400921 out.flags = FUSE_ATOMIC_O_TRUNC;
Brian Swetland03ee9472010-08-12 18:01:08 -0700922 out.max_background = 32;
923 out.congestion_threshold = 32;
924 out.max_write = 256 * 1024;
925
926 fuse_reply(fuse, hdr->unique, &out, sizeof(out));
927 return;
928 }
929 default: {
930 struct fuse_out_header h;
931 ERROR("NOTIMPL op=%d uniq=%llx nid=%llx\n",
932 hdr->opcode, hdr->unique, hdr->nodeid);
933
934 oops:
935 h.len = sizeof(h);
936 h.error = -ENOSYS;
937 h.unique = hdr->unique;
938 write(fuse->fd, &h, sizeof(h));
939 break;
940 }
941 }
942}
943
944void handle_fuse_requests(struct fuse *fuse)
945{
946 unsigned char req[256 * 1024 + 128];
947 int len;
948
949 for (;;) {
950 len = read(fuse->fd, req, 8192);
951 if (len < 0) {
952 if (errno == EINTR)
953 continue;
954 ERROR("handle_fuse_requests: errno=%d\n", errno);
955 return;
956 }
957 handle_fuse_request(fuse, (void*) req, (void*) (req + sizeof(struct fuse_in_header)), len);
958 }
959}
960
Mike Lockwood4f35e622011-01-12 14:39:44 -0500961static int usage()
962{
Mike Lockwood1bedb732011-01-13 13:38:42 -0500963 ERROR("usage: sdcard [-l -f] <path> <uid> <gid>\n\n\t-l force file names to lower case when creating new files\n\t-f fix up file system before starting (repairs bad file name case and group ownership)\n");
Mike Lockwood4f35e622011-01-12 14:39:44 -0500964 return -1;
965}
966
Brian Swetland03ee9472010-08-12 18:01:08 -0700967int main(int argc, char **argv)
968{
969 struct fuse fuse;
970 char opts[256];
971 int fd;
972 int res;
Mike Lockwood4f35e622011-01-12 14:39:44 -0500973 const char *path = NULL;
Mike Lockwood4f35e622011-01-12 14:39:44 -0500974 int i;
Brian Swetland03ee9472010-08-12 18:01:08 -0700975
Mike Lockwood4f35e622011-01-12 14:39:44 -0500976 for (i = 1; i < argc; i++) {
977 char* arg = argv[i];
Mike Lockwood575a2bb2011-01-23 14:46:30 -0800978 if (!path)
979 path = arg;
980 else if (uid == -1)
981 uid = strtoul(arg, 0, 10);
982 else if (gid == -1)
983 gid = strtoul(arg, 0, 10);
984 else {
985 ERROR("too many arguments\n");
986 return usage();
Mike Lockwood4f35e622011-01-12 14:39:44 -0500987 }
Brian Swetland03ee9472010-08-12 18:01:08 -0700988 }
989
Mike Lockwood4f35e622011-01-12 14:39:44 -0500990 if (!path) {
991 ERROR("no path specified\n");
992 return usage();
993 }
994 if (uid <= 0 || gid <= 0) {
Brian Swetland03ee9472010-08-12 18:01:08 -0700995 ERROR("uid and gid must be nonzero\n");
Mike Lockwood4f35e622011-01-12 14:39:44 -0500996 return usage();
Brian Swetland03ee9472010-08-12 18:01:08 -0700997 }
998
Brian Swetland03ee9472010-08-12 18:01:08 -0700999 /* cleanup from previous instance, if necessary */
Mike Lockwood4553b082010-08-16 14:14:44 -04001000 umount2(MOUNT_POINT, 2);
Brian Swetland03ee9472010-08-12 18:01:08 -07001001
1002 fd = open("/dev/fuse", O_RDWR);
1003 if (fd < 0){
1004 ERROR("cannot open fuse device (%d)\n", errno);
1005 return -1;
1006 }
1007
1008 sprintf(opts, "fd=%i,rootmode=40000,default_permissions,allow_other,"
1009 "user_id=%d,group_id=%d", fd, uid, gid);
1010
Mike Lockwood4553b082010-08-16 14:14:44 -04001011 res = mount("/dev/fuse", MOUNT_POINT, "fuse", MS_NOSUID | MS_NODEV, opts);
Brian Swetland03ee9472010-08-12 18:01:08 -07001012 if (res < 0) {
1013 ERROR("cannot mount fuse filesystem (%d)\n", errno);
1014 return -1;
1015 }
1016
1017 if (setgid(gid) < 0) {
1018 ERROR("cannot setgid!\n");
1019 return -1;
1020 }
1021 if (setuid(uid) < 0) {
1022 ERROR("cannot setuid!\n");
1023 return -1;
1024 }
1025
Brian Swetland03ee9472010-08-12 18:01:08 -07001026 fuse_init(&fuse, fd, path);
1027
1028 umask(0);
1029 handle_fuse_requests(&fuse);
1030
1031 return 0;
1032}