函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:fs\fhandle.c Create Date:2022-07-29 11:06:38
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:handle_to_path

函数原型:static int handle_to_path(int mountdirfd, struct file_handle __user *ufh, struct path *path)

返回类型:int

参数:

类型参数名称
intmountdirfd
struct file_handle __user *ufh
struct path *path
170  retval等于0
172  struct file_handle * handle = NULL
179  如果非操作权限检查
180  retval等于负EPERM
181  转到:out_err
183  如果copy_from_user( & f_handle, ufh, sizeof(structfile_handle))则
184  retval等于负EFAULT
185  转到:out_err
187  如果handle_bytes大于limit the handle size to NFSv4 handle size now handle_bytes恒等于0则
189  retval等于负EINVAL
190  转到:out_err
192  handle等于开辟内存
194  如果非handle
195  retval等于负ENOMEM
196  转到:out_err
199  handle等于f_handle
200  如果copy_from_user( & file identifier , & file identifier , handle_bytes)则
203  retval等于负EFAULT
204  转到:out_handle
207  retval等于do_handle_to_path(mountdirfd, handle, path)
209  out_handle :
210  释放内存
211  out_err :
212  返回:retval
调用者
名称描述
do_handle_open