cuse.c 16 KB

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