Rev 4305 | Rev 4482 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2671 | jermar | 1 | /* |
2684 | jermar | 2 | * Copyright (c) 2008 Jakub Jermar |
2671 | jermar | 3 | * All rights reserved. |
4 | * |
||
5 | * Redistribution and use in source and binary forms, with or without |
||
6 | * modification, are permitted provided that the following conditions |
||
7 | * are met: |
||
8 | * |
||
9 | * - Redistributions of source code must retain the above copyright |
||
10 | * notice, this list of conditions and the following disclaimer. |
||
11 | * - Redistributions in binary form must reproduce the above copyright |
||
12 | * notice, this list of conditions and the following disclaimer in the |
||
13 | * documentation and/or other materials provided with the distribution. |
||
14 | * - The name of the author may not be used to endorse or promote products |
||
15 | * derived from this software without specific prior written permission. |
||
16 | * |
||
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
||
18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
||
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
||
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
||
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
||
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||
27 | */ |
||
28 | |||
29 | /** @addtogroup libc |
||
30 | * @{ |
||
31 | */ |
||
32 | /** @file |
||
33 | */ |
||
4002 | decky | 34 | |
2755 | jermar | 35 | #include <vfs/vfs.h> |
36 | #include <vfs/canonify.h> |
||
2694 | jermar | 37 | #include <stdlib.h> |
2674 | jermar | 38 | #include <unistd.h> |
2694 | jermar | 39 | #include <dirent.h> |
2674 | jermar | 40 | #include <fcntl.h> |
2707 | jermar | 41 | #include <sys/stat.h> |
2771 | jermar | 42 | #include <stdio.h> |
2707 | jermar | 43 | #include <sys/types.h> |
2671 | jermar | 44 | #include <ipc/ipc.h> |
45 | #include <ipc/services.h> |
||
46 | #include <async.h> |
||
47 | #include <atomic.h> |
||
48 | #include <futex.h> |
||
49 | #include <errno.h> |
||
50 | #include <string.h> |
||
4401 | svoboda | 51 | #include <devmap.h> |
3747 | svoboda | 52 | #include "../../../srv/vfs/vfs.h" |
2671 | jermar | 53 | |
54 | int vfs_phone = -1; |
||
2755 | jermar | 55 | futex_t vfs_phone_futex = FUTEX_INITIALIZER; |
2671 | jermar | 56 | |
2755 | jermar | 57 | futex_t cwd_futex = FUTEX_INITIALIZER; |
58 | DIR *cwd_dir = NULL; |
||
59 | char *cwd_path = NULL; |
||
4256 | svoboda | 60 | size_t cwd_size = 0; |
2755 | jermar | 61 | |
3306 | jermar | 62 | char *absolutize(const char *path, size_t *retlen) |
2755 | jermar | 63 | { |
64 | char *ncwd_path; |
||
3292 | jermar | 65 | char *ncwd_path_nc; |
2755 | jermar | 66 | |
67 | futex_down(&cwd_futex); |
||
4256 | svoboda | 68 | size_t size = str_size(path); |
2755 | jermar | 69 | if (*path != '/') { |
70 | if (!cwd_path) { |
||
71 | futex_up(&cwd_futex); |
||
72 | return NULL; |
||
73 | } |
||
4256 | svoboda | 74 | ncwd_path_nc = malloc(cwd_size + 1 + size + 1); |
3292 | jermar | 75 | if (!ncwd_path_nc) { |
2755 | jermar | 76 | futex_up(&cwd_futex); |
77 | return NULL; |
||
78 | } |
||
4268 | svoboda | 79 | str_cpy(ncwd_path_nc, cwd_size + 1 + size + 1, cwd_path); |
4256 | svoboda | 80 | ncwd_path_nc[cwd_size] = '/'; |
81 | ncwd_path_nc[cwd_size + 1] = '\0'; |
||
2755 | jermar | 82 | } else { |
4256 | svoboda | 83 | ncwd_path_nc = malloc(size + 1); |
3292 | jermar | 84 | if (!ncwd_path_nc) { |
2755 | jermar | 85 | futex_up(&cwd_futex); |
86 | return NULL; |
||
87 | } |
||
3292 | jermar | 88 | ncwd_path_nc[0] = '\0'; |
2755 | jermar | 89 | } |
4280 | svoboda | 90 | str_append(ncwd_path_nc, cwd_size + 1 + size + 1, path); |
3292 | jermar | 91 | ncwd_path = canonify(ncwd_path_nc, retlen); |
92 | if (!ncwd_path) { |
||
2771 | jermar | 93 | futex_up(&cwd_futex); |
3292 | jermar | 94 | free(ncwd_path_nc); |
2771 | jermar | 95 | return NULL; |
96 | } |
||
3292 | jermar | 97 | /* |
98 | * We need to clone ncwd_path because canonify() works in-place and thus |
||
99 | * the address in ncwd_path need not be the same as ncwd_path_nc, even |
||
100 | * though they both point into the same dynamically allocated buffer. |
||
101 | */ |
||
4266 | svoboda | 102 | ncwd_path = str_dup(ncwd_path); |
3292 | jermar | 103 | free(ncwd_path_nc); |
104 | if (!ncwd_path) { |
||
105 | futex_up(&cwd_futex); |
||
106 | return NULL; |
||
107 | } |
||
2755 | jermar | 108 | futex_up(&cwd_futex); |
109 | return ncwd_path; |
||
110 | } |
||
111 | |||
4002 | decky | 112 | static void vfs_connect(void) |
2671 | jermar | 113 | { |
4002 | decky | 114 | while (vfs_phone < 0) |
115 | vfs_phone = ipc_connect_me_to_blocking(PHONE_NS, SERVICE_VFS, 0, 0); |
||
2671 | jermar | 116 | } |
117 | |||
4002 | decky | 118 | int mount(const char *fs_name, const char *mp, const char *dev, |
4401 | svoboda | 119 | const char *opts, unsigned int flags) |
2671 | jermar | 120 | { |
121 | int res; |
||
122 | ipcarg_t rc; |
||
123 | aid_t req; |
||
3077 | decky | 124 | dev_handle_t dev_handle; |
125 | |||
4401 | svoboda | 126 | res = devmap_device_get_handle(dev, &dev_handle, flags); |
3077 | decky | 127 | if (res != EOK) |
128 | return res; |
||
129 | |||
4256 | svoboda | 130 | size_t mpa_size; |
131 | char *mpa = absolutize(mp, &mpa_size); |
||
2755 | jermar | 132 | if (!mpa) |
133 | return ENOMEM; |
||
4002 | decky | 134 | |
2671 | jermar | 135 | futex_down(&vfs_phone_futex); |
136 | async_serialize_start(); |
||
4002 | decky | 137 | vfs_connect(); |
138 | |||
139 | req = async_send_2(vfs_phone, VFS_MOUNT, dev_handle, flags, NULL); |
||
4256 | svoboda | 140 | rc = ipc_data_write_start(vfs_phone, (void *) mpa, mpa_size); |
2671 | jermar | 141 | if (rc != EOK) { |
142 | async_wait_for(req, NULL); |
||
143 | async_serialize_end(); |
||
144 | futex_up(&vfs_phone_futex); |
||
2755 | jermar | 145 | free(mpa); |
2671 | jermar | 146 | return (int) rc; |
147 | } |
||
4002 | decky | 148 | |
4305 | jermar | 149 | rc = ipc_data_write_start(vfs_phone, (void *) opts, str_size(opts)); |
150 | if (rc != EOK) { |
||
151 | async_wait_for(req, NULL); |
||
152 | async_serialize_end(); |
||
153 | futex_up(&vfs_phone_futex); |
||
154 | free(mpa); |
||
155 | return (int) rc; |
||
156 | } |
||
157 | |||
4256 | svoboda | 158 | rc = ipc_data_write_start(vfs_phone, (void *) fs_name, str_size(fs_name)); |
3255 | jermar | 159 | if (rc != EOK) { |
160 | async_wait_for(req, NULL); |
||
161 | async_serialize_end(); |
||
162 | futex_up(&vfs_phone_futex); |
||
163 | free(mpa); |
||
164 | return (int) rc; |
||
165 | } |
||
4302 | jermar | 166 | |
167 | /* Ask VFS whether it likes fs_name. */ |
||
168 | rc = async_req_0_0(vfs_phone, IPC_M_PING); |
||
169 | if (rc != EOK) { |
||
170 | async_wait_for(req, NULL); |
||
171 | async_serialize_end(); |
||
172 | futex_up(&vfs_phone_futex); |
||
173 | free(mpa); |
||
174 | return (int) rc; |
||
175 | } |
||
4002 | decky | 176 | |
2671 | jermar | 177 | async_wait_for(req, &rc); |
178 | async_serialize_end(); |
||
179 | futex_up(&vfs_phone_futex); |
||
2755 | jermar | 180 | free(mpa); |
4002 | decky | 181 | |
2671 | jermar | 182 | return (int) rc; |
183 | } |
||
184 | |||
2700 | jermar | 185 | static int _open(const char *path, int lflag, int oflag, ...) |
2671 | jermar | 186 | { |
187 | ipcarg_t rc; |
||
188 | ipc_call_t answer; |
||
189 | aid_t req; |
||
190 | |||
4256 | svoboda | 191 | size_t pa_size; |
192 | char *pa = absolutize(path, &pa_size); |
||
2755 | jermar | 193 | if (!pa) |
194 | return ENOMEM; |
||
195 | |||
2671 | jermar | 196 | futex_down(&vfs_phone_futex); |
197 | async_serialize_start(); |
||
4002 | decky | 198 | vfs_connect(); |
199 | |||
2700 | jermar | 200 | req = async_send_3(vfs_phone, VFS_OPEN, lflag, oflag, 0, &answer); |
4256 | svoboda | 201 | rc = ipc_data_write_start(vfs_phone, pa, pa_size); |
2671 | jermar | 202 | if (rc != EOK) { |
203 | async_wait_for(req, NULL); |
||
204 | async_serialize_end(); |
||
205 | futex_up(&vfs_phone_futex); |
||
2755 | jermar | 206 | free(pa); |
2671 | jermar | 207 | return (int) rc; |
208 | } |
||
209 | async_wait_for(req, &rc); |
||
210 | async_serialize_end(); |
||
211 | futex_up(&vfs_phone_futex); |
||
2755 | jermar | 212 | free(pa); |
3214 | svoboda | 213 | |
3246 | jermar | 214 | if (rc != EOK) |
215 | return (int) rc; |
||
2671 | jermar | 216 | return (int) IPC_GET_ARG1(answer); |
217 | } |
||
218 | |||
2700 | jermar | 219 | int open(const char *path, int oflag, ...) |
220 | { |
||
221 | return _open(path, L_FILE, oflag); |
||
222 | } |
||
223 | |||
2707 | jermar | 224 | int close(int fildes) |
225 | { |
||
2734 | jermar | 226 | ipcarg_t rc; |
4002 | decky | 227 | |
2734 | jermar | 228 | futex_down(&vfs_phone_futex); |
229 | async_serialize_start(); |
||
4002 | decky | 230 | vfs_connect(); |
231 | |||
2734 | jermar | 232 | rc = async_req_1_0(vfs_phone, VFS_CLOSE, fildes); |
4002 | decky | 233 | |
2734 | jermar | 234 | async_serialize_end(); |
235 | futex_up(&vfs_phone_futex); |
||
236 | |||
237 | return (int)rc; |
||
2707 | jermar | 238 | } |
239 | |||
2671 | jermar | 240 | ssize_t read(int fildes, void *buf, size_t nbyte) |
241 | { |
||
242 | ipcarg_t rc; |
||
243 | ipc_call_t answer; |
||
244 | aid_t req; |
||
245 | |||
246 | futex_down(&vfs_phone_futex); |
||
247 | async_serialize_start(); |
||
4002 | decky | 248 | vfs_connect(); |
249 | |||
2674 | jermar | 250 | req = async_send_1(vfs_phone, VFS_READ, fildes, &answer); |
2741 | jermar | 251 | rc = ipc_data_read_start(vfs_phone, (void *)buf, nbyte); |
252 | if (rc != EOK) { |
||
2671 | jermar | 253 | async_wait_for(req, NULL); |
254 | async_serialize_end(); |
||
255 | futex_up(&vfs_phone_futex); |
||
256 | return (ssize_t) rc; |
||
257 | } |
||
258 | async_wait_for(req, &rc); |
||
259 | async_serialize_end(); |
||
260 | futex_up(&vfs_phone_futex); |
||
2710 | jermar | 261 | if (rc == EOK) |
262 | return (ssize_t) IPC_GET_ARG1(answer); |
||
263 | else |
||
3313 | jermar | 264 | return rc; |
2671 | jermar | 265 | } |
266 | |||
2674 | jermar | 267 | ssize_t write(int fildes, const void *buf, size_t nbyte) |
268 | { |
||
269 | ipcarg_t rc; |
||
270 | ipc_call_t answer; |
||
271 | aid_t req; |
||
272 | |||
273 | futex_down(&vfs_phone_futex); |
||
274 | async_serialize_start(); |
||
4002 | decky | 275 | vfs_connect(); |
276 | |||
2674 | jermar | 277 | req = async_send_1(vfs_phone, VFS_WRITE, fildes, &answer); |
2741 | jermar | 278 | rc = ipc_data_write_start(vfs_phone, (void *)buf, nbyte); |
279 | if (rc != EOK) { |
||
2674 | jermar | 280 | async_wait_for(req, NULL); |
281 | async_serialize_end(); |
||
282 | futex_up(&vfs_phone_futex); |
||
283 | return (ssize_t) rc; |
||
284 | } |
||
285 | async_wait_for(req, &rc); |
||
286 | async_serialize_end(); |
||
287 | futex_up(&vfs_phone_futex); |
||
2710 | jermar | 288 | if (rc == EOK) |
289 | return (ssize_t) IPC_GET_ARG1(answer); |
||
290 | else |
||
291 | return -1; |
||
2674 | jermar | 292 | } |
2684 | jermar | 293 | |
294 | off_t lseek(int fildes, off_t offset, int whence) |
||
295 | { |
||
296 | ipcarg_t rc; |
||
297 | |||
298 | futex_down(&vfs_phone_futex); |
||
299 | async_serialize_start(); |
||
4002 | decky | 300 | vfs_connect(); |
301 | |||
3488 | svoboda | 302 | ipcarg_t newoffs; |
2684 | jermar | 303 | rc = async_req_3_1(vfs_phone, VFS_SEEK, fildes, offset, whence, |
3488 | svoboda | 304 | &newoffs); |
2684 | jermar | 305 | |
306 | async_serialize_end(); |
||
307 | futex_up(&vfs_phone_futex); |
||
308 | |||
309 | if (rc != EOK) |
||
310 | return (off_t) -1; |
||
311 | |||
3488 | svoboda | 312 | return (off_t) newoffs; |
2684 | jermar | 313 | } |
314 | |||
2693 | jermar | 315 | int ftruncate(int fildes, off_t length) |
316 | { |
||
317 | ipcarg_t rc; |
||
318 | |||
319 | futex_down(&vfs_phone_futex); |
||
320 | async_serialize_start(); |
||
4002 | decky | 321 | vfs_connect(); |
322 | |||
2693 | jermar | 323 | rc = async_req_2_0(vfs_phone, VFS_TRUNCATE, fildes, length); |
324 | async_serialize_end(); |
||
325 | futex_up(&vfs_phone_futex); |
||
326 | return (int) rc; |
||
327 | } |
||
328 | |||
2694 | jermar | 329 | DIR *opendir(const char *dirname) |
330 | { |
||
331 | DIR *dirp = malloc(sizeof(DIR)); |
||
332 | if (!dirp) |
||
333 | return NULL; |
||
2700 | jermar | 334 | dirp->fd = _open(dirname, L_DIRECTORY, 0); |
2699 | jermar | 335 | if (dirp->fd < 0) { |
2694 | jermar | 336 | free(dirp); |
337 | return NULL; |
||
338 | } |
||
339 | return dirp; |
||
340 | } |
||
341 | |||
342 | struct dirent *readdir(DIR *dirp) |
||
343 | { |
||
2699 | jermar | 344 | ssize_t len = read(dirp->fd, &dirp->res.d_name[0], NAME_MAX + 1); |
345 | if (len <= 0) |
||
346 | return NULL; |
||
347 | return &dirp->res; |
||
2694 | jermar | 348 | } |
349 | |||
350 | void rewinddir(DIR *dirp) |
||
351 | { |
||
2699 | jermar | 352 | (void) lseek(dirp->fd, 0, SEEK_SET); |
2694 | jermar | 353 | } |
354 | |||
355 | int closedir(DIR *dirp) |
||
356 | { |
||
357 | (void) close(dirp->fd); |
||
358 | free(dirp); |
||
359 | return 0; |
||
360 | } |
||
361 | |||
2707 | jermar | 362 | int mkdir(const char *path, mode_t mode) |
2694 | jermar | 363 | { |
2707 | jermar | 364 | ipcarg_t rc; |
365 | aid_t req; |
||
366 | |||
4256 | svoboda | 367 | size_t pa_size; |
368 | char *pa = absolutize(path, &pa_size); |
||
2755 | jermar | 369 | if (!pa) |
370 | return ENOMEM; |
||
4002 | decky | 371 | |
2707 | jermar | 372 | futex_down(&vfs_phone_futex); |
373 | async_serialize_start(); |
||
4002 | decky | 374 | vfs_connect(); |
375 | |||
2735 | jermar | 376 | req = async_send_1(vfs_phone, VFS_MKDIR, mode, NULL); |
4256 | svoboda | 377 | rc = ipc_data_write_start(vfs_phone, pa, pa_size); |
2707 | jermar | 378 | if (rc != EOK) { |
379 | async_wait_for(req, NULL); |
||
380 | async_serialize_end(); |
||
381 | futex_up(&vfs_phone_futex); |
||
2755 | jermar | 382 | free(pa); |
2707 | jermar | 383 | return (int) rc; |
384 | } |
||
385 | async_wait_for(req, &rc); |
||
386 | async_serialize_end(); |
||
387 | futex_up(&vfs_phone_futex); |
||
2755 | jermar | 388 | free(pa); |
2761 | jermar | 389 | return rc; |
2694 | jermar | 390 | } |
391 | |||
2735 | jermar | 392 | static int _unlink(const char *path, int lflag) |
393 | { |
||
394 | ipcarg_t rc; |
||
395 | aid_t req; |
||
396 | |||
4256 | svoboda | 397 | size_t pa_size; |
398 | char *pa = absolutize(path, &pa_size); |
||
2755 | jermar | 399 | if (!pa) |
400 | return ENOMEM; |
||
2771 | jermar | 401 | |
2735 | jermar | 402 | futex_down(&vfs_phone_futex); |
403 | async_serialize_start(); |
||
4002 | decky | 404 | vfs_connect(); |
405 | |||
2735 | jermar | 406 | req = async_send_0(vfs_phone, VFS_UNLINK, NULL); |
4256 | svoboda | 407 | rc = ipc_data_write_start(vfs_phone, pa, pa_size); |
2735 | jermar | 408 | if (rc != EOK) { |
409 | async_wait_for(req, NULL); |
||
410 | async_serialize_end(); |
||
411 | futex_up(&vfs_phone_futex); |
||
2755 | jermar | 412 | free(pa); |
2735 | jermar | 413 | return (int) rc; |
414 | } |
||
415 | async_wait_for(req, &rc); |
||
416 | async_serialize_end(); |
||
417 | futex_up(&vfs_phone_futex); |
||
2755 | jermar | 418 | free(pa); |
2761 | jermar | 419 | return rc; |
2735 | jermar | 420 | } |
421 | |||
422 | int unlink(const char *path) |
||
423 | { |
||
424 | return _unlink(path, L_NONE); |
||
425 | } |
||
426 | |||
427 | int rmdir(const char *path) |
||
428 | { |
||
429 | return _unlink(path, L_DIRECTORY); |
||
430 | } |
||
431 | |||
2763 | jermar | 432 | int rename(const char *old, const char *new) |
433 | { |
||
434 | ipcarg_t rc; |
||
435 | aid_t req; |
||
436 | |||
4256 | svoboda | 437 | size_t olda_size; |
438 | char *olda = absolutize(old, &olda_size); |
||
2763 | jermar | 439 | if (!olda) |
440 | return ENOMEM; |
||
2771 | jermar | 441 | |
4256 | svoboda | 442 | size_t newa_size; |
443 | char *newa = absolutize(new, &newa_size); |
||
2763 | jermar | 444 | if (!newa) { |
445 | free(olda); |
||
446 | return ENOMEM; |
||
447 | } |
||
448 | |||
449 | futex_down(&vfs_phone_futex); |
||
450 | async_serialize_start(); |
||
4002 | decky | 451 | vfs_connect(); |
452 | |||
2763 | jermar | 453 | req = async_send_0(vfs_phone, VFS_RENAME, NULL); |
4256 | svoboda | 454 | rc = ipc_data_write_start(vfs_phone, olda, olda_size); |
2763 | jermar | 455 | if (rc != EOK) { |
456 | async_wait_for(req, NULL); |
||
457 | async_serialize_end(); |
||
458 | futex_up(&vfs_phone_futex); |
||
459 | free(olda); |
||
460 | free(newa); |
||
461 | return (int) rc; |
||
462 | } |
||
4256 | svoboda | 463 | rc = ipc_data_write_start(vfs_phone, newa, newa_size); |
2763 | jermar | 464 | if (rc != EOK) { |
465 | async_wait_for(req, NULL); |
||
466 | async_serialize_end(); |
||
467 | futex_up(&vfs_phone_futex); |
||
468 | free(olda); |
||
469 | free(newa); |
||
470 | return (int) rc; |
||
471 | } |
||
472 | async_wait_for(req, &rc); |
||
473 | async_serialize_end(); |
||
474 | futex_up(&vfs_phone_futex); |
||
475 | free(olda); |
||
476 | free(newa); |
||
477 | return rc; |
||
478 | } |
||
479 | |||
2755 | jermar | 480 | int chdir(const char *path) |
481 | { |
||
4256 | svoboda | 482 | size_t pa_size; |
483 | char *pa = absolutize(path, &pa_size); |
||
2755 | jermar | 484 | if (!pa) |
485 | return ENOMEM; |
||
486 | |||
2771 | jermar | 487 | DIR *d = opendir(pa); |
2755 | jermar | 488 | if (!d) { |
489 | free(pa); |
||
490 | return ENOENT; |
||
491 | } |
||
492 | |||
493 | futex_down(&cwd_futex); |
||
494 | if (cwd_dir) { |
||
495 | closedir(cwd_dir); |
||
496 | cwd_dir = NULL; |
||
497 | free(cwd_path); |
||
498 | cwd_path = NULL; |
||
4256 | svoboda | 499 | cwd_size = 0; |
2755 | jermar | 500 | } |
501 | cwd_dir = d; |
||
2771 | jermar | 502 | cwd_path = pa; |
4256 | svoboda | 503 | cwd_size = pa_size; |
2755 | jermar | 504 | futex_up(&cwd_futex); |
3464 | jermar | 505 | return EOK; |
2755 | jermar | 506 | } |
507 | |||
508 | char *getcwd(char *buf, size_t size) |
||
509 | { |
||
510 | if (!size) |
||
511 | return NULL; |
||
512 | futex_down(&cwd_futex); |
||
4256 | svoboda | 513 | if (size < cwd_size + 1) { |
2755 | jermar | 514 | futex_up(&cwd_futex); |
515 | return NULL; |
||
516 | } |
||
4268 | svoboda | 517 | str_cpy(buf, size, cwd_path); |
2755 | jermar | 518 | futex_up(&cwd_futex); |
519 | return buf; |
||
520 | } |
||
521 | |||
2671 | jermar | 522 | /** @} |
523 | */ |