Rev 4445 | Rev 4509 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4445 | Rev 4463 | ||
---|---|---|---|
Line 26... | Line 26... | ||
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | */ |
27 | */ |
28 | 28 | ||
29 | /** @addtogroup fs |
29 | /** @addtogroup fs |
30 | * @{ |
30 | * @{ |
31 | */ |
31 | */ |
32 | 32 | ||
33 | /** |
33 | /** |
34 | * @file vfs_lookup.c |
34 | * @file vfs_lookup.c |
35 | * @brief |
35 | * @brief |
36 | */ |
36 | */ |
37 | 37 | ||
38 | #include "vfs.h" |
38 | #include "vfs.h" |
39 | #include <ipc/ipc.h> |
39 | #include <ipc/ipc.h> |
Line 44... | Line 44... | ||
44 | #include <bool.h> |
44 | #include <bool.h> |
45 | #include <futex.h> |
45 | #include <futex.h> |
46 | #include <libadt/list.h> |
46 | #include <libadt/list.h> |
47 | #include <vfs/canonify.h> |
47 | #include <vfs/canonify.h> |
48 | 48 | ||
49 | #define min(a, b) ((a) < (b) ? (a) : (b)) |
49 | #define min(a, b) ((a) < (b) ? (a) : (b)) |
50 | 50 | ||
51 | futex_t plb_futex = FUTEX_INITIALIZER; |
51 | futex_t plb_futex = FUTEX_INITIALIZER; |
52 | link_t plb_head; /**< PLB entry ring buffer. */ |
52 | link_t plb_head; /**< PLB entry ring buffer. */ |
53 | uint8_t *plb = NULL; |
53 | uint8_t *plb = NULL; |
54 | 54 | ||
55 | /** Perform a path lookup. |
55 | /** Perform a path lookup. |
56 | * |
56 | * |
57 | * @param path Path to be resolved; it must be a NULL-terminated |
57 | * @param path Path to be resolved; it must be a NULL-terminated |
58 | * string. |
58 | * string. |
59 | * @param lflag Flags to be used during lookup. |
59 | * @param lflag Flags to be used during lookup. |
60 | * @param result Empty structure where the lookup result will be stored. |
60 | * @param result Empty structure where the lookup result will be stored. |
61 | * Can be NULL. |
61 | * Can be NULL. |
62 | * @param altroot If non-empty, will be used instead of rootfs as the root |
62 | * @param altroot If non-empty, will be used instead of rootfs as the root |
63 | * of the whole VFS tree. |
63 | * of the whole VFS tree. |
- | 64 | * |
|
- | 65 | * @return EOK on success or an error code from errno.h. |
|
64 | * |
66 | * |
65 | * @return EOK on success or an error code from errno.h. |
- | |
66 | */ |
67 | */ |
67 | int vfs_lookup_internal(char *path, int lflag, vfs_lookup_res_t *result, |
68 | int vfs_lookup_internal(char *path, int lflag, vfs_lookup_res_t *result, |
68 | vfs_pair_t *altroot, ...) |
69 | vfs_pair_t *altroot, ...) |
69 | { |
70 | { |
70 | vfs_pair_t *root; |
71 | vfs_pair_t *root; |
Line 176... | Line 177... | ||
176 | */ |
177 | */ |
177 | memset(&plb[first], 0, cnt1); |
178 | memset(&plb[first], 0, cnt1); |
178 | memset(plb, 0, cnt2); |
179 | memset(plb, 0, cnt2); |
179 | futex_up(&plb_futex); |
180 | futex_up(&plb_futex); |
180 | 181 | ||
181 | if ((rc == EOK) && result) { |
182 | if ((rc == EOK) && (result)) { |
182 | result->triplet.fs_handle = (fs_handle_t) IPC_GET_ARG1(answer); |
183 | result->triplet.fs_handle = (fs_handle_t) IPC_GET_ARG1(answer); |
183 | result->triplet.dev_handle = (dev_handle_t) IPC_GET_ARG2(answer); |
184 | result->triplet.dev_handle = (dev_handle_t) IPC_GET_ARG2(answer); |
184 | result->triplet.index = (fs_index_t) IPC_GET_ARG3(answer); |
185 | result->triplet.index = (fs_index_t) IPC_GET_ARG3(answer); |
185 | result->size = (size_t) IPC_GET_ARG4(answer); |
186 | result->size = (size_t) IPC_GET_ARG4(answer); |
186 | result->lnkcnt = (unsigned) IPC_GET_ARG5(answer); |
187 | result->lnkcnt = (unsigned) IPC_GET_ARG5(answer); |
Line 193... | Line 194... | ||
193 | } |
194 | } |
194 | 195 | ||
195 | return rc; |
196 | return rc; |
196 | } |
197 | } |
197 | 198 | ||
- | 199 | /** Perform a node open operation. |
|
- | 200 | * |
|
- | 201 | * @return EOK on success or an error code from errno.h. |
|
- | 202 | * |
|
- | 203 | */ |
|
- | 204 | int vfs_open_node_internal(vfs_lookup_res_t *result) |
|
- | 205 | { |
|
- | 206 | int phone = vfs_grab_phone(result->triplet.fs_handle); |
|
- | 207 | ||
- | 208 | ipc_call_t answer; |
|
- | 209 | aid_t req = async_send_2(phone, VFS_OPEN_NODE, |
|
- | 210 | (ipcarg_t) result->triplet.dev_handle, |
|
- | 211 | (ipcarg_t) result->triplet.index, &answer); |
|
- | 212 | ||
- | 213 | vfs_release_phone(phone); |
|
- | 214 | ||
- | 215 | async_serialize_start(); |
|
- | 216 | ipcarg_t rc; |
|
- | 217 | async_wait_for(req, &rc); |
|
- | 218 | async_serialize_end(); |
|
- | 219 | ||
- | 220 | if (rc == EOK) { |
|
- | 221 | result->size = (size_t) IPC_GET_ARG1(answer); |
|
- | 222 | result->lnkcnt = (unsigned) IPC_GET_ARG2(answer); |
|
- | 223 | if (IPC_GET_ARG3(answer) & L_FILE) |
|
- | 224 | result->type = VFS_NODE_FILE; |
|
- | 225 | else if (IPC_GET_ARG3(answer) & L_DIRECTORY) |
|
- | 226 | result->type = VFS_NODE_DIRECTORY; |
|
- | 227 | else |
|
- | 228 | result->type = VFS_NODE_UNKNOWN; |
|
- | 229 | } |
|
- | 230 | ||
- | 231 | return rc; |
|
- | 232 | } |
|
- | 233 | ||
198 | /** |
234 | /** |
199 | * @} |
235 | * @} |
200 | */ |
236 | */ |