unlink.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/nfs/unlink.c
  3.  *
  4.  * nfs sillydelete handling
  5.  *
  6.  * NOTE: we rely on holding the BKL for list manipulation protection.
  7.  */
  8. #include <linux/slab.h>
  9. #include <linux/string.h>
  10. #include <linux/dcache.h>
  11. #include <linux/sunrpc/sched.h>
  12. #include <linux/sunrpc/clnt.h>
  13. #include <linux/nfs_fs.h>
  14. struct nfs_unlinkdata {
  15. struct nfs_unlinkdata *next;
  16. struct dentry *dir, *dentry;
  17. struct qstr name;
  18. struct rpc_task task;
  19. struct rpc_cred *cred;
  20. unsigned int count;
  21. };
  22. static struct nfs_unlinkdata *nfs_deletes;
  23. static struct rpc_wait_queue nfs_delete_queue = RPC_INIT_WAITQ("nfs_delete_queue");
  24. /**
  25.  * nfs_detach_unlinkdata - Remove asynchronous unlink from global list
  26.  * @data: pointer to descriptor
  27.  */
  28. static inline void
  29. nfs_detach_unlinkdata(struct nfs_unlinkdata *data)
  30. {
  31. struct nfs_unlinkdata **q;
  32. for (q = &nfs_deletes; *q != NULL; q = &((*q)->next)) {
  33. if (*q == data) {
  34. *q = data->next;
  35. break;
  36. }
  37. }
  38. }
  39. /**
  40.  * nfs_put_unlinkdata - release data from a sillydelete operation.
  41.  * @data: pointer to unlink structure.
  42.  */
  43. static void
  44. nfs_put_unlinkdata(struct nfs_unlinkdata *data)
  45. {
  46. if (--data->count == 0) {
  47. nfs_detach_unlinkdata(data);
  48. if (data->name.name != NULL)
  49. kfree(data->name.name);
  50. kfree(data);
  51. }
  52. }
  53. #define NAME_ALLOC_LEN(len) ((len+16) & ~15)
  54. /**
  55.  * nfs_copy_dname - copy dentry name to data structure
  56.  * @dentry: pointer to dentry
  57.  * @data: nfs_unlinkdata
  58.  */
  59. static inline void
  60. nfs_copy_dname(struct dentry *dentry, struct nfs_unlinkdata *data)
  61. {
  62. char *str;
  63. int len = dentry->d_name.len;
  64. str = kmalloc(NAME_ALLOC_LEN(len), GFP_KERNEL);
  65. if (!str)
  66. return;
  67. memcpy(str, dentry->d_name.name, len);
  68. if (!data->name.len) {
  69. data->name.len = len;
  70. data->name.name = str;
  71. } else
  72. kfree(str);
  73. }
  74. /**
  75.  * nfs_async_unlink_init - Initialize the RPC info
  76.  * @task: rpc_task of the sillydelete
  77.  *
  78.  * We delay initializing RPC info until after the call to dentry_iput()
  79.  * in order to minimize races against rename().
  80.  */
  81. static void
  82. nfs_async_unlink_init(struct rpc_task *task)
  83. {
  84. struct nfs_unlinkdata *data = (struct nfs_unlinkdata *)task->tk_calldata;
  85. struct dentry *dir = data->dir;
  86. struct rpc_message msg;
  87. int status = -ENOENT;
  88. if (!data->name.len)
  89. goto out_err;
  90. memset(&msg, 0, sizeof(msg));
  91. msg.rpc_cred = data->cred;
  92. status = NFS_PROTO(dir->d_inode)->unlink_setup(&msg, dir, &data->name);
  93. if (status < 0)
  94. goto out_err;
  95. rpc_call_setup(task, &msg, 0);
  96. return;
  97.  out_err:
  98. rpc_exit(task, status);
  99. }
  100. /**
  101.  * nfs_async_unlink_done - Sillydelete post-processing
  102.  * @task: rpc_task of the sillydelete
  103.  *
  104.  * Do the directory attribute update.
  105.  */
  106. static void
  107. nfs_async_unlink_done(struct rpc_task *task)
  108. {
  109. struct nfs_unlinkdata *data = (struct nfs_unlinkdata *)task->tk_calldata;
  110. struct dentry *dir = data->dir;
  111. struct inode *dir_i;
  112. if (nfs_async_handle_jukebox(task))
  113. return;
  114. if (!dir)
  115. return;
  116. dir_i = dir->d_inode;
  117. nfs_zap_caches(dir_i);
  118. NFS_PROTO(dir_i)->unlink_done(dir, &task->tk_msg);
  119. put_rpccred(data->cred);
  120. data->cred = NULL;
  121. dput(dir);
  122. }
  123. /**
  124.  * nfs_async_unlink_release - Release the sillydelete data.
  125.  * @task: rpc_task of the sillydelete
  126.  *
  127.  * We need to call nfs_put_unlinkdata as a 'tk_release' task since the
  128.  * rpc_task would be freed too.
  129.  */
  130. static void
  131. nfs_async_unlink_release(struct rpc_task *task)
  132. {
  133. struct nfs_unlinkdata *data = (struct nfs_unlinkdata *)task->tk_calldata;
  134. nfs_put_unlinkdata(data);
  135. }
  136. /**
  137.  * nfs_async_unlink - asynchronous unlinking of a file
  138.  * @dir: directory in which the file resides.
  139.  * @name: name of the file to unlink.
  140.  */
  141. int
  142. nfs_async_unlink(struct dentry *dentry)
  143. {
  144. struct dentry *dir = dentry->d_parent;
  145. struct nfs_unlinkdata *data;
  146. struct rpc_task *task;
  147. struct rpc_clnt *clnt = NFS_CLIENT(dir->d_inode);
  148. int status = -ENOMEM;
  149. data = kmalloc(sizeof(*data), GFP_KERNEL);
  150. if (!data)
  151. goto out;
  152. memset(data, 0, sizeof(*data));
  153. data->dir = dget(dir);
  154. data->dentry = dentry;
  155. data->next = nfs_deletes;
  156. nfs_deletes = data;
  157. data->count = 1;
  158. task = &data->task;
  159. rpc_init_task(task, clnt, nfs_async_unlink_done , RPC_TASK_ASYNC);
  160. task->tk_calldata = data;
  161. task->tk_action = nfs_async_unlink_init;
  162. task->tk_release = nfs_async_unlink_release;
  163. dentry->d_flags |= DCACHE_NFSFS_RENAMED;
  164. data->cred = rpcauth_lookupcred(clnt->cl_auth, 0);
  165. rpc_sleep_on(&nfs_delete_queue, task, NULL, NULL);
  166. status = 0;
  167.  out:
  168. return status;
  169. }
  170. /**
  171.  * nfs_complete_remove - Initialize completion of the sillydelete
  172.  * @dentry: dentry to delete
  173.  *
  174.  * Since we're most likely to be called by dentry_iput(), we
  175.  * only use the dentry to find the sillydelete. We then copy the name
  176.  * into the qstr.
  177.  */
  178. void
  179. nfs_complete_unlink(struct dentry *dentry)
  180. {
  181. struct nfs_unlinkdata *data;
  182. for(data = nfs_deletes; data != NULL; data = data->next) {
  183. if (dentry == data->dentry)
  184. break;
  185. }
  186. if (!data)
  187. return;
  188. data->count++;
  189. nfs_copy_dname(dentry, data);
  190. dentry->d_flags &= ~DCACHE_NFSFS_RENAMED;
  191. if (data->task.tk_rpcwait == &nfs_delete_queue)
  192. rpc_wake_up_task(&data->task);
  193. nfs_put_unlinkdata(data);
  194. }