symlink.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * symlink.c
  3. *
  4. * Copyright (C) 2002 by John Newbigin
  5. *
  6. * Please add a note about your changes to smbfs in the ChangeLog file.
  7. */
  8. #include <linux/sched.h>
  9. #include <linux/kernel.h>
  10. #include <linux/errno.h>
  11. #include <linux/fcntl.h>
  12. #include <linux/stat.h>
  13. #include <linux/mm.h>
  14. #include <linux/slab.h>
  15. #include <linux/pagemap.h>
  16. #include <linux/smp_lock.h>
  17. #include <linux/net.h>
  18. #include <linux/namei.h>
  19. #include <asm/uaccess.h>
  20. #include <asm/system.h>
  21. #include <linux/smbno.h>
  22. #include <linux/smb_fs.h>
  23. #include "smb_debug.h"
  24. #include "proto.h"
  25. int smb_symlink(struct inode *inode, struct dentry *dentry, const char *oldname)
  26. {
  27. DEBUG1("create symlink %s -> %s/%s\n", oldname, DENTRY_PATH(dentry));
  28. return smb_proc_symlink(server_from_dentry(dentry), dentry, oldname);
  29. }
  30. static void *smb_follow_link(struct dentry *dentry, struct nameidata *nd)
  31. {
  32. char *link = __getname();
  33. DEBUG1("followlink of %s/%s\n", DENTRY_PATH(dentry));
  34. if (!link) {
  35. link = ERR_PTR(-ENOMEM);
  36. } else {
  37. int len = smb_proc_read_link(server_from_dentry(dentry),
  38. dentry, link, PATH_MAX - 1);
  39. if (len < 0) {
  40. __putname(link);
  41. link = ERR_PTR(len);
  42. } else {
  43. link[len] = 0;
  44. }
  45. }
  46. nd_set_link(nd, link);
  47. return NULL;
  48. }
  49. static void smb_put_link(struct dentry *dentry, struct nameidata *nd, void *p)
  50. {
  51. char *s = nd_get_link(nd);
  52. if (!IS_ERR(s))
  53. __putname(s);
  54. }
  55. struct inode_operations smb_link_inode_operations =
  56. {
  57. .readlink = generic_readlink,
  58. .follow_link = smb_follow_link,
  59. .put_link = smb_put_link,
  60. };