PageRenderTime 1282ms CodeModel.GetById 16ms RepoModel.GetById 1ms app.codeStats 0ms

/fs/fuse/cuse.c

https://github.com/Mengqi/linux-2.6
C | 620 lines | 386 code | 98 blank | 136 comment | 44 complexity | 4a80d601b71e31ea6b0cb0070349cab1 MD5 | raw file
  1. /*
  2. * CUSE: Character device in Userspace
  3. *
  4. * Copyright (C) 2008-2009 SUSE Linux Products GmbH
  5. * Copyright (C) 2008-2009 Tejun Heo <tj@kernel.org>
  6. *
  7. * This file is released under the GPLv2.
  8. *
  9. * CUSE enables character devices to be implemented from userland much
  10. * like FUSE allows filesystems. On initialization /dev/cuse is
  11. * created. By opening the file and replying to the CUSE_INIT request
  12. * userland CUSE server can create a character device. After that the
  13. * operation is very similar to FUSE.
  14. *
  15. * A CUSE instance involves the following objects.
  16. *
  17. * cuse_conn : contains fuse_conn and serves as bonding structure
  18. * channel : file handle connected to the userland CUSE server
  19. * cdev : the implemented character device
  20. * dev : generic device for cdev
  21. *
  22. * Note that 'channel' is what 'dev' is in FUSE. As CUSE deals with
  23. * devices, it's called 'channel' to reduce confusion.
  24. *
  25. * channel determines when the character device dies. When channel is
  26. * closed, everything begins to destruct. The cuse_conn is taken off
  27. * the lookup table preventing further access from cdev, cdev and
  28. * generic device are removed and the base reference of cuse_conn is
  29. * put.
  30. *
  31. * On each open, the matching cuse_conn is looked up and if found an
  32. * additional reference is taken which is released when the file is
  33. * closed.
  34. */
  35. #include <linux/fuse.h>
  36. #include <linux/cdev.h>
  37. #include <linux/device.h>
  38. #include <linux/file.h>
  39. #include <linux/fs.h>
  40. #include <linux/kdev_t.h>
  41. #include <linux/kthread.h>
  42. #include <linux/list.h>
  43. #include <linux/magic.h>
  44. #include <linux/miscdevice.h>
  45. #include <linux/mutex.h>
  46. #include <linux/slab.h>
  47. #include <linux/spinlock.h>
  48. #include <linux/stat.h>
  49. #include "fuse_i.h"
  50. #define CUSE_CONNTBL_LEN 64
  51. struct cuse_conn {
  52. struct list_head list; /* linked on cuse_conntbl */
  53. struct fuse_conn fc; /* fuse connection */
  54. struct cdev *cdev; /* associated character device */
  55. struct device *dev; /* device representing @cdev */
  56. /* init parameters, set once during initialization */
  57. bool unrestricted_ioctl;
  58. };
  59. static DEFINE_SPINLOCK(cuse_lock); /* protects cuse_conntbl */
  60. static struct list_head cuse_conntbl[CUSE_CONNTBL_LEN];
  61. static struct class *cuse_class;
  62. static struct cuse_conn *fc_to_cc(struct fuse_conn *fc)
  63. {
  64. return container_of(fc, struct cuse_conn, fc);
  65. }
  66. static struct list_head *cuse_conntbl_head(dev_t devt)
  67. {
  68. return &cuse_conntbl[(MAJOR(devt) + MINOR(devt)) % CUSE_CONNTBL_LEN];
  69. }
  70. /**************************************************************************
  71. * CUSE frontend operations
  72. *
  73. * These are file operations for the character device.
  74. *
  75. * On open, CUSE opens a file from the FUSE mnt and stores it to
  76. * private_data of the open file. All other ops call FUSE ops on the
  77. * FUSE file.
  78. */
  79. static ssize_t cuse_read(struct file *file, char __user *buf, size_t count,
  80. loff_t *ppos)
  81. {
  82. loff_t pos = 0;
  83. return fuse_direct_io(file, buf, count, &pos, 0);
  84. }
  85. static ssize_t cuse_write(struct file *file, const char __user *buf,
  86. size_t count, loff_t *ppos)
  87. {
  88. loff_t pos = 0;
  89. /*
  90. * No locking or generic_write_checks(), the server is
  91. * responsible for locking and sanity checks.
  92. */
  93. return fuse_direct_io(file, buf, count, &pos, 1);
  94. }
  95. static int cuse_open(struct inode *inode, struct file *file)
  96. {
  97. dev_t devt = inode->i_cdev->dev;
  98. struct cuse_conn *cc = NULL, *pos;
  99. int rc;
  100. /* look up and get the connection */
  101. spin_lock(&cuse_lock);
  102. list_for_each_entry(pos, cuse_conntbl_head(devt), list)
  103. if (pos->dev->devt == devt) {
  104. fuse_conn_get(&pos->fc);
  105. cc = pos;
  106. break;
  107. }
  108. spin_unlock(&cuse_lock);
  109. /* dead? */
  110. if (!cc)
  111. return -ENODEV;
  112. /*
  113. * Generic permission check is already done against the chrdev
  114. * file, proceed to open.
  115. */
  116. rc = fuse_do_open(&cc->fc, 0, file, 0);
  117. if (rc)
  118. fuse_conn_put(&cc->fc);
  119. return rc;
  120. }
  121. static int cuse_release(struct inode *inode, struct file *file)
  122. {
  123. struct fuse_file *ff = file->private_data;
  124. struct fuse_conn *fc = ff->fc;
  125. fuse_sync_release(ff, file->f_flags);
  126. fuse_conn_put(fc);
  127. return 0;
  128. }
  129. static long cuse_file_ioctl(struct file *file, unsigned int cmd,
  130. unsigned long arg)
  131. {
  132. struct fuse_file *ff = file->private_data;
  133. struct cuse_conn *cc = fc_to_cc(ff->fc);
  134. unsigned int flags = 0;
  135. if (cc->unrestricted_ioctl)
  136. flags |= FUSE_IOCTL_UNRESTRICTED;
  137. return fuse_do_ioctl(file, cmd, arg, flags);
  138. }
  139. static long cuse_file_compat_ioctl(struct file *file, unsigned int cmd,
  140. unsigned long arg)
  141. {
  142. struct fuse_file *ff = file->private_data;
  143. struct cuse_conn *cc = fc_to_cc(ff->fc);
  144. unsigned int flags = FUSE_IOCTL_COMPAT;
  145. if (cc->unrestricted_ioctl)
  146. flags |= FUSE_IOCTL_UNRESTRICTED;
  147. return fuse_do_ioctl(file, cmd, arg, flags);
  148. }
  149. static const struct file_operations cuse_frontend_fops = {
  150. .owner = THIS_MODULE,
  151. .read = cuse_read,
  152. .write = cuse_write,
  153. .open = cuse_open,
  154. .release = cuse_release,
  155. .unlocked_ioctl = cuse_file_ioctl,
  156. .compat_ioctl = cuse_file_compat_ioctl,
  157. .poll = fuse_file_poll,
  158. .llseek = noop_llseek,
  159. };
  160. /**************************************************************************
  161. * CUSE channel initialization and destruction
  162. */
  163. struct cuse_devinfo {
  164. const char *name;
  165. };
  166. /**
  167. * cuse_parse_one - parse one key=value pair
  168. * @pp: i/o parameter for the current position
  169. * @end: points to one past the end of the packed string
  170. * @keyp: out parameter for key
  171. * @valp: out parameter for value
  172. *
  173. * *@pp points to packed strings - "key0=val0\0key1=val1\0" which ends
  174. * at @end - 1. This function parses one pair and set *@keyp to the
  175. * start of the key and *@valp to the start of the value. Note that
  176. * the original string is modified such that the key string is
  177. * terminated with '\0'. *@pp is updated to point to the next string.
  178. *
  179. * RETURNS:
  180. * 1 on successful parse, 0 on EOF, -errno on failure.
  181. */
  182. static int cuse_parse_one(char **pp, char *end, char **keyp, char **valp)
  183. {
  184. char *p = *pp;
  185. char *key, *val;
  186. while (p < end && *p == '\0')
  187. p++;
  188. if (p == end)
  189. return 0;
  190. if (end[-1] != '\0') {
  191. printk(KERN_ERR "CUSE: info not properly terminated\n");
  192. return -EINVAL;
  193. }
  194. key = val = p;
  195. p += strlen(p);
  196. if (valp) {
  197. strsep(&val, "=");
  198. if (!val)
  199. val = key + strlen(key);
  200. key = strstrip(key);
  201. val = strstrip(val);
  202. } else
  203. key = strstrip(key);
  204. if (!strlen(key)) {
  205. printk(KERN_ERR "CUSE: zero length info key specified\n");
  206. return -EINVAL;
  207. }
  208. *pp = p;
  209. *keyp = key;
  210. if (valp)
  211. *valp = val;
  212. return 1;
  213. }
  214. /**
  215. * cuse_parse_dev_info - parse device info
  216. * @p: device info string
  217. * @len: length of device info string
  218. * @devinfo: out parameter for parsed device info
  219. *
  220. * Parse @p to extract device info and store it into @devinfo. String
  221. * pointed to by @p is modified by parsing and @devinfo points into
  222. * them, so @p shouldn't be freed while @devinfo is in use.
  223. *
  224. * RETURNS:
  225. * 0 on success, -errno on failure.
  226. */
  227. static int cuse_parse_devinfo(char *p, size_t len, struct cuse_devinfo *devinfo)
  228. {
  229. char *end = p + len;
  230. char *key, *val;
  231. int rc;
  232. while (true) {
  233. rc = cuse_parse_one(&p, end, &key, &val);
  234. if (rc < 0)
  235. return rc;
  236. if (!rc)
  237. break;
  238. if (strcmp(key, "DEVNAME") == 0)
  239. devinfo->name = val;
  240. else
  241. printk(KERN_WARNING "CUSE: unknown device info \"%s\"\n",
  242. key);
  243. }
  244. if (!devinfo->name || !strlen(devinfo->name)) {
  245. printk(KERN_ERR "CUSE: DEVNAME unspecified\n");
  246. return -EINVAL;
  247. }
  248. return 0;
  249. }
  250. static void cuse_gendev_release(struct device *dev)
  251. {
  252. kfree(dev);
  253. }
  254. /**
  255. * cuse_process_init_reply - finish initializing CUSE channel
  256. *
  257. * This function creates the character device and sets up all the
  258. * required data structures for it. Please read the comment at the
  259. * top of this file for high level overview.
  260. */
  261. static void cuse_process_init_reply(struct fuse_conn *fc, struct fuse_req *req)
  262. {
  263. struct cuse_conn *cc = fc_to_cc(fc);
  264. struct cuse_init_out *arg = req->out.args[0].value;
  265. struct page *page = req->pages[0];
  266. struct cuse_devinfo devinfo = { };
  267. struct device *dev;
  268. struct cdev *cdev;
  269. dev_t devt;
  270. int rc;
  271. if (req->out.h.error ||
  272. arg->major != FUSE_KERNEL_VERSION || arg->minor < 11) {
  273. goto err;
  274. }
  275. fc->minor = arg->minor;
  276. fc->max_read = max_t(unsigned, arg->max_read, 4096);
  277. fc->max_write = max_t(unsigned, arg->max_write, 4096);
  278. /* parse init reply */
  279. cc->unrestricted_ioctl = arg->flags & CUSE_UNRESTRICTED_IOCTL;
  280. rc = cuse_parse_devinfo(page_address(page), req->out.args[1].size,
  281. &devinfo);
  282. if (rc)
  283. goto err;
  284. /* determine and reserve devt */
  285. devt = MKDEV(arg->dev_major, arg->dev_minor);
  286. if (!MAJOR(devt))
  287. rc = alloc_chrdev_region(&devt, MINOR(devt), 1, devinfo.name);
  288. else
  289. rc = register_chrdev_region(devt, 1, devinfo.name);
  290. if (rc) {
  291. printk(KERN_ERR "CUSE: failed to register chrdev region\n");
  292. goto err;
  293. }
  294. /* devt determined, create device */
  295. rc = -ENOMEM;
  296. dev = kzalloc(sizeof(*dev), GFP_KERNEL);
  297. if (!dev)
  298. goto err_region;
  299. device_initialize(dev);
  300. dev_set_uevent_suppress(dev, 1);
  301. dev->class = cuse_class;
  302. dev->devt = devt;
  303. dev->release = cuse_gendev_release;
  304. dev_set_drvdata(dev, cc);
  305. dev_set_name(dev, "%s", devinfo.name);
  306. rc = device_add(dev);
  307. if (rc)
  308. goto err_device;
  309. /* register cdev */
  310. rc = -ENOMEM;
  311. cdev = cdev_alloc();
  312. if (!cdev)
  313. goto err_device;
  314. cdev->owner = THIS_MODULE;
  315. cdev->ops = &cuse_frontend_fops;
  316. rc = cdev_add(cdev, devt, 1);
  317. if (rc)
  318. goto err_cdev;
  319. cc->dev = dev;
  320. cc->cdev = cdev;
  321. /* make the device available */
  322. spin_lock(&cuse_lock);
  323. list_add(&cc->list, cuse_conntbl_head(devt));
  324. spin_unlock(&cuse_lock);
  325. /* announce device availability */
  326. dev_set_uevent_suppress(dev, 0);
  327. kobject_uevent(&dev->kobj, KOBJ_ADD);
  328. out:
  329. kfree(arg);
  330. __free_page(page);
  331. return;
  332. err_cdev:
  333. cdev_del(cdev);
  334. err_device:
  335. put_device(dev);
  336. err_region:
  337. unregister_chrdev_region(devt, 1);
  338. err:
  339. fc->conn_error = 1;
  340. goto out;
  341. }
  342. static int cuse_send_init(struct cuse_conn *cc)
  343. {
  344. int rc;
  345. struct fuse_req *req;
  346. struct page *page;
  347. struct fuse_conn *fc = &cc->fc;
  348. struct cuse_init_in *arg;
  349. void *outarg;
  350. BUILD_BUG_ON(CUSE_INIT_INFO_MAX > PAGE_SIZE);
  351. req = fuse_get_req(fc);
  352. if (IS_ERR(req)) {
  353. rc = PTR_ERR(req);
  354. goto err;
  355. }
  356. rc = -ENOMEM;
  357. page = alloc_page(GFP_KERNEL | __GFP_ZERO);
  358. if (!page)
  359. goto err_put_req;
  360. outarg = kzalloc(sizeof(struct cuse_init_out), GFP_KERNEL);
  361. if (!outarg)
  362. goto err_free_page;
  363. arg = &req->misc.cuse_init_in;
  364. arg->major = FUSE_KERNEL_VERSION;
  365. arg->minor = FUSE_KERNEL_MINOR_VERSION;
  366. arg->flags |= CUSE_UNRESTRICTED_IOCTL;
  367. req->in.h.opcode = CUSE_INIT;
  368. req->in.numargs = 1;
  369. req->in.args[0].size = sizeof(struct cuse_init_in);
  370. req->in.args[0].value = arg;
  371. req->out.numargs = 2;
  372. req->out.args[0].size = sizeof(struct cuse_init_out);
  373. req->out.args[0].value = outarg;
  374. req->out.args[1].size = CUSE_INIT_INFO_MAX;
  375. req->out.argvar = 1;
  376. req->out.argpages = 1;
  377. req->pages[0] = page;
  378. req->num_pages = 1;
  379. req->end = cuse_process_init_reply;
  380. fuse_request_send_background(fc, req);
  381. return 0;
  382. err_free_page:
  383. __free_page(page);
  384. err_put_req:
  385. fuse_put_request(fc, req);
  386. err:
  387. return rc;
  388. }
  389. static void cuse_fc_release(struct fuse_conn *fc)
  390. {
  391. struct cuse_conn *cc = fc_to_cc(fc);
  392. kfree(cc);
  393. }
  394. /**
  395. * cuse_channel_open - open method for /dev/cuse
  396. * @inode: inode for /dev/cuse
  397. * @file: file struct being opened
  398. *
  399. * Userland CUSE server can create a CUSE device by opening /dev/cuse
  400. * and replying to the initialization request kernel sends. This
  401. * function is responsible for handling CUSE device initialization.
  402. * Because the fd opened by this function is used during
  403. * initialization, this function only creates cuse_conn and sends
  404. * init. The rest is delegated to a kthread.
  405. *
  406. * RETURNS:
  407. * 0 on success, -errno on failure.
  408. */
  409. static int cuse_channel_open(struct inode *inode, struct file *file)
  410. {
  411. struct cuse_conn *cc;
  412. int rc;
  413. /* set up cuse_conn */
  414. cc = kzalloc(sizeof(*cc), GFP_KERNEL);
  415. if (!cc)
  416. return -ENOMEM;
  417. fuse_conn_init(&cc->fc);
  418. INIT_LIST_HEAD(&cc->list);
  419. cc->fc.release = cuse_fc_release;
  420. cc->fc.connected = 1;
  421. cc->fc.blocked = 0;
  422. rc = cuse_send_init(cc);
  423. if (rc) {
  424. fuse_conn_put(&cc->fc);
  425. return rc;
  426. }
  427. file->private_data = &cc->fc; /* channel owns base reference to cc */
  428. return 0;
  429. }
  430. /**
  431. * cuse_channel_release - release method for /dev/cuse
  432. * @inode: inode for /dev/cuse
  433. * @file: file struct being closed
  434. *
  435. * Disconnect the channel, deregister CUSE device and initiate
  436. * destruction by putting the default reference.
  437. *
  438. * RETURNS:
  439. * 0 on success, -errno on failure.
  440. */
  441. static int cuse_channel_release(struct inode *inode, struct file *file)
  442. {
  443. struct cuse_conn *cc = fc_to_cc(file->private_data);
  444. int rc;
  445. /* remove from the conntbl, no more access from this point on */
  446. spin_lock(&cuse_lock);
  447. list_del_init(&cc->list);
  448. spin_unlock(&cuse_lock);
  449. /* remove device */
  450. if (cc->dev)
  451. device_unregister(cc->dev);
  452. if (cc->cdev) {
  453. unregister_chrdev_region(cc->cdev->dev, 1);
  454. cdev_del(cc->cdev);
  455. }
  456. /* kill connection and shutdown channel */
  457. fuse_conn_kill(&cc->fc);
  458. rc = fuse_dev_release(inode, file); /* puts the base reference */
  459. return rc;
  460. }
  461. static struct file_operations cuse_channel_fops; /* initialized during init */
  462. /**************************************************************************
  463. * Misc stuff and module initializatiion
  464. *
  465. * CUSE exports the same set of attributes to sysfs as fusectl.
  466. */
  467. static ssize_t cuse_class_waiting_show(struct device *dev,
  468. struct device_attribute *attr, char *buf)
  469. {
  470. struct cuse_conn *cc = dev_get_drvdata(dev);
  471. return sprintf(buf, "%d\n", atomic_read(&cc->fc.num_waiting));
  472. }
  473. static ssize_t cuse_class_abort_store(struct device *dev,
  474. struct device_attribute *attr,
  475. const char *buf, size_t count)
  476. {
  477. struct cuse_conn *cc = dev_get_drvdata(dev);
  478. fuse_abort_conn(&cc->fc);
  479. return count;
  480. }
  481. static struct device_attribute cuse_class_dev_attrs[] = {
  482. __ATTR(waiting, S_IFREG | 0400, cuse_class_waiting_show, NULL),
  483. __ATTR(abort, S_IFREG | 0200, NULL, cuse_class_abort_store),
  484. { }
  485. };
  486. static struct miscdevice cuse_miscdev = {
  487. .minor = MISC_DYNAMIC_MINOR,
  488. .name = "cuse",
  489. .fops = &cuse_channel_fops,
  490. };
  491. static int __init cuse_init(void)
  492. {
  493. int i, rc;
  494. /* init conntbl */
  495. for (i = 0; i < CUSE_CONNTBL_LEN; i++)
  496. INIT_LIST_HEAD(&cuse_conntbl[i]);
  497. /* inherit and extend fuse_dev_operations */
  498. cuse_channel_fops = fuse_dev_operations;
  499. cuse_channel_fops.owner = THIS_MODULE;
  500. cuse_channel_fops.open = cuse_channel_open;
  501. cuse_channel_fops.release = cuse_channel_release;
  502. cuse_class = class_create(THIS_MODULE, "cuse");
  503. if (IS_ERR(cuse_class))
  504. return PTR_ERR(cuse_class);
  505. cuse_class->dev_attrs = cuse_class_dev_attrs;
  506. rc = misc_register(&cuse_miscdev);
  507. if (rc) {
  508. class_destroy(cuse_class);
  509. return rc;
  510. }
  511. return 0;
  512. }
  513. static void __exit cuse_exit(void)
  514. {
  515. misc_deregister(&cuse_miscdev);
  516. class_destroy(cuse_class);
  517. }
  518. module_init(cuse_init);
  519. module_exit(cuse_exit);
  520. MODULE_AUTHOR("Tejun Heo <tj@kernel.org>");
  521. MODULE_DESCRIPTION("Character device in Userspace");
  522. MODULE_LICENSE("GPL");