cuse.c 15 KB

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