btrfs-progs: move get_subvol_name() to utils.c
[btrfs-progs-unstable/devel.git] / send-utils.c
blob3c369b86c237432538ccb3b40b1cde6b7470a51a
1 /*
2 * Copyright (C) 2012 Alexander Block. All rights reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
19 #include <unistd.h>
20 #include <fcntl.h>
21 #include <sys/ioctl.h>
22 #include <uuid/uuid.h>
23 #include <limits.h>
24 #include <errno.h>
26 #include "ctree.h"
27 #include "send-utils.h"
28 #include "ioctl.h"
29 #include "btrfs-list.h"
31 static int btrfs_subvolid_resolve_sub(int fd, char *path, size_t *path_len,
32 u64 subvol_id);
34 static int btrfs_get_root_id_by_sub_path(int mnt_fd, const char *sub_path,
35 u64 *root_id)
37 int ret;
38 int subvol_fd;
40 subvol_fd = openat(mnt_fd, sub_path, O_RDONLY);
41 if (subvol_fd < 0) {
42 ret = -errno;
43 fprintf(stderr, "ERROR: open %s failed. %s\n", sub_path,
44 strerror(-ret));
45 return ret;
48 ret = btrfs_list_get_path_rootid(subvol_fd, root_id);
49 close(subvol_fd);
50 return ret;
53 static int btrfs_read_root_item_raw(int mnt_fd, u64 root_id, size_t buf_len,
54 u32 *read_len, void *buf)
56 int ret;
57 struct btrfs_ioctl_search_args args;
58 struct btrfs_ioctl_search_key *sk = &args.key;
59 struct btrfs_ioctl_search_header *sh;
60 unsigned long off = 0;
61 int found = 0;
62 int i;
64 *read_len = 0;
65 memset(&args, 0, sizeof(args));
67 sk->tree_id = BTRFS_ROOT_TREE_OBJECTID;
70 * there may be more than one ROOT_ITEM key if there are
71 * snapshots pending deletion, we have to loop through
72 * them.
74 sk->min_objectid = root_id;
75 sk->max_objectid = root_id;
76 sk->max_type = BTRFS_ROOT_ITEM_KEY;
77 sk->min_type = BTRFS_ROOT_ITEM_KEY;
78 sk->max_offset = (u64)-1;
79 sk->max_transid = (u64)-1;
80 sk->nr_items = 4096;
82 while (1) {
83 ret = ioctl(mnt_fd, BTRFS_IOC_TREE_SEARCH, &args);
84 if (ret < 0) {
85 fprintf(stderr,
86 "ERROR: can't perform the search - %s\n",
87 strerror(errno));
88 return 0;
90 /* the ioctl returns the number of item it found in nr_items */
91 if (sk->nr_items == 0)
92 break;
94 off = 0;
95 for (i = 0; i < sk->nr_items; i++) {
96 struct btrfs_root_item *item;
97 sh = (struct btrfs_ioctl_search_header *)(args.buf +
98 off);
100 off += sizeof(*sh);
101 item = (struct btrfs_root_item *)(args.buf + off);
102 off += sh->len;
104 sk->min_objectid = sh->objectid;
105 sk->min_type = sh->type;
106 sk->min_offset = sh->offset;
108 if (sh->objectid > root_id)
109 break;
111 if (sh->objectid == root_id &&
112 sh->type == BTRFS_ROOT_ITEM_KEY) {
113 if (sh->len > buf_len) {
114 /* btrfs-progs is too old for kernel */
115 fprintf(stderr,
116 "ERROR: buf for read_root_item_raw() is too small, get newer btrfs tools!\n");
117 return -EOVERFLOW;
119 memcpy(buf, item, sh->len);
120 *read_len = sh->len;
121 found = 1;
124 if (sk->min_offset < (u64)-1)
125 sk->min_offset++;
126 else
127 break;
129 if (sk->min_type != BTRFS_ROOT_ITEM_KEY ||
130 sk->min_objectid != root_id)
131 break;
134 return found ? 0 : -ENOENT;
138 * Read a root item from the tree. In case we detect a root item smaller then
139 * sizeof(root_item), we know it's an old version of the root structure and
140 * initialize all new fields to zero. The same happens if we detect mismatching
141 * generation numbers as then we know the root was once mounted with an older
142 * kernel that was not aware of the root item structure change.
144 static int btrfs_read_root_item(int mnt_fd, u64 root_id,
145 struct btrfs_root_item *item)
147 int ret;
148 u32 read_len;
150 ret = btrfs_read_root_item_raw(mnt_fd, root_id, sizeof(*item),
151 &read_len, item);
152 if (ret)
153 return ret;
155 if (read_len < sizeof(*item) ||
156 btrfs_root_generation(item) != btrfs_root_generation_v2(item))
157 memset(&item->generation_v2, 0,
158 sizeof(*item) - offsetof(struct btrfs_root_item,
159 generation_v2));
161 return 0;
164 #ifdef BTRFS_COMPAT_SEND_NO_UUID_TREE
165 static struct rb_node *tree_insert(struct rb_root *root,
166 struct subvol_info *si,
167 enum subvol_search_type type)
169 struct rb_node **p = &root->rb_node;
170 struct rb_node *parent = NULL;
171 struct subvol_info *entry;
172 __s64 comp;
174 while (*p) {
175 parent = *p;
176 if (type == subvol_search_by_received_uuid) {
177 entry = rb_entry(parent, struct subvol_info,
178 rb_received_node);
180 comp = memcmp(entry->received_uuid, si->received_uuid,
181 BTRFS_UUID_SIZE);
182 if (!comp) {
183 if (entry->stransid < si->stransid)
184 comp = -1;
185 else if (entry->stransid > si->stransid)
186 comp = 1;
187 else
188 comp = 0;
190 } else if (type == subvol_search_by_uuid) {
191 entry = rb_entry(parent, struct subvol_info,
192 rb_local_node);
193 comp = memcmp(entry->uuid, si->uuid, BTRFS_UUID_SIZE);
194 } else if (type == subvol_search_by_root_id) {
195 entry = rb_entry(parent, struct subvol_info,
196 rb_root_id_node);
197 comp = entry->root_id - si->root_id;
198 } else if (type == subvol_search_by_path) {
199 entry = rb_entry(parent, struct subvol_info,
200 rb_path_node);
201 comp = strcmp(entry->path, si->path);
202 } else {
203 BUG();
206 if (comp < 0)
207 p = &(*p)->rb_left;
208 else if (comp > 0)
209 p = &(*p)->rb_right;
210 else
211 return parent;
214 if (type == subvol_search_by_received_uuid) {
215 rb_link_node(&si->rb_received_node, parent, p);
216 rb_insert_color(&si->rb_received_node, root);
217 } else if (type == subvol_search_by_uuid) {
218 rb_link_node(&si->rb_local_node, parent, p);
219 rb_insert_color(&si->rb_local_node, root);
220 } else if (type == subvol_search_by_root_id) {
221 rb_link_node(&si->rb_root_id_node, parent, p);
222 rb_insert_color(&si->rb_root_id_node, root);
223 } else if (type == subvol_search_by_path) {
224 rb_link_node(&si->rb_path_node, parent, p);
225 rb_insert_color(&si->rb_path_node, root);
227 return NULL;
229 #endif
231 int btrfs_subvolid_resolve(int fd, char *path, size_t path_len, u64 subvol_id)
233 if (path_len < 1)
234 return -EOVERFLOW;
235 path[0] = '\0';
236 path_len--;
237 path[path_len] = '\0';
238 return btrfs_subvolid_resolve_sub(fd, path, &path_len, subvol_id);
241 static int btrfs_subvolid_resolve_sub(int fd, char *path, size_t *path_len,
242 u64 subvol_id)
244 int ret;
245 struct btrfs_ioctl_search_args search_arg;
246 struct btrfs_ioctl_ino_lookup_args ino_lookup_arg;
247 struct btrfs_ioctl_search_header *search_header;
248 struct btrfs_root_ref *backref_item;
250 if (subvol_id == BTRFS_FS_TREE_OBJECTID) {
251 if (*path_len < 1)
252 return -EOVERFLOW;
253 *path = '\0';
254 (*path_len)--;
255 return 0;
258 memset(&search_arg, 0, sizeof(search_arg));
259 search_arg.key.tree_id = BTRFS_ROOT_TREE_OBJECTID;
260 search_arg.key.min_objectid = subvol_id;
261 search_arg.key.max_objectid = subvol_id;
262 search_arg.key.min_type = BTRFS_ROOT_BACKREF_KEY;
263 search_arg.key.max_type = BTRFS_ROOT_BACKREF_KEY;
264 search_arg.key.max_offset = (u64)-1;
265 search_arg.key.max_transid = (u64)-1;
266 search_arg.key.nr_items = 1;
267 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &search_arg);
268 if (ret < 0) {
269 fprintf(stderr,
270 "ioctl(BTRFS_IOC_TREE_SEARCH, subvol_id %llu) ret=%d, error: %s\n",
271 (unsigned long long)subvol_id, ret, strerror(errno));
272 return ret;
275 if (search_arg.key.nr_items < 1) {
276 fprintf(stderr,
277 "failed to lookup subvol_id %llu!\n",
278 (unsigned long long)subvol_id);
279 return -ENOENT;
281 search_header = (struct btrfs_ioctl_search_header *)search_arg.buf;
282 backref_item = (struct btrfs_root_ref *)(search_header + 1);
283 if (search_header->offset != BTRFS_FS_TREE_OBJECTID) {
284 int sub_ret;
286 sub_ret = btrfs_subvolid_resolve_sub(fd, path, path_len,
287 search_header->offset);
288 if (sub_ret)
289 return sub_ret;
290 if (*path_len < 1)
291 return -EOVERFLOW;
292 strcat(path, "/");
293 (*path_len)--;
296 if (btrfs_stack_root_ref_dirid(backref_item) !=
297 BTRFS_FIRST_FREE_OBJECTID) {
298 int len;
300 memset(&ino_lookup_arg, 0, sizeof(ino_lookup_arg));
301 ino_lookup_arg.treeid = search_header->offset;
302 ino_lookup_arg.objectid =
303 btrfs_stack_root_ref_dirid(backref_item);
304 ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &ino_lookup_arg);
305 if (ret < 0) {
306 fprintf(stderr,
307 "ioctl(BTRFS_IOC_INO_LOOKUP) ret=%d, error: %s\n",
308 ret, strerror(errno));
309 return ret;
312 len = strlen(ino_lookup_arg.name);
313 if (*path_len < len)
314 return -EOVERFLOW;
315 strcat(path, ino_lookup_arg.name);
316 (*path_len) -= len;
319 if (*path_len < btrfs_stack_root_ref_name_len(backref_item))
320 return -EOVERFLOW;
321 strncat(path, (char *)(backref_item + 1),
322 btrfs_stack_root_ref_name_len(backref_item));
323 (*path_len) -= btrfs_stack_root_ref_name_len(backref_item);
324 return 0;
327 #ifdef BTRFS_COMPAT_SEND_NO_UUID_TREE
328 static int count_bytes(void *buf, int len, char b)
330 int cnt = 0;
331 int i;
333 for (i = 0; i < len; i++) {
334 if (((char *)buf)[i] == b)
335 cnt++;
337 return cnt;
340 void subvol_uuid_search_add(struct subvol_uuid_search *s,
341 struct subvol_info *si)
343 int cnt;
345 tree_insert(&s->root_id_subvols, si, subvol_search_by_root_id);
346 tree_insert(&s->path_subvols, si, subvol_search_by_path);
348 cnt = count_bytes(si->uuid, BTRFS_UUID_SIZE, 0);
349 if (cnt != BTRFS_UUID_SIZE)
350 tree_insert(&s->local_subvols, si, subvol_search_by_uuid);
351 cnt = count_bytes(si->received_uuid, BTRFS_UUID_SIZE, 0);
352 if (cnt != BTRFS_UUID_SIZE)
353 tree_insert(&s->received_subvols, si,
354 subvol_search_by_received_uuid);
357 static struct subvol_info *tree_search(struct rb_root *root,
358 u64 root_id, const u8 *uuid,
359 u64 stransid, const char *path,
360 enum subvol_search_type type)
362 struct rb_node *n = root->rb_node;
363 struct subvol_info *entry;
364 __s64 comp;
366 while (n) {
367 if (type == subvol_search_by_received_uuid) {
368 entry = rb_entry(n, struct subvol_info,
369 rb_received_node);
370 comp = memcmp(entry->received_uuid, uuid,
371 BTRFS_UUID_SIZE);
372 if (!comp) {
373 if (entry->stransid < stransid)
374 comp = -1;
375 else if (entry->stransid > stransid)
376 comp = 1;
377 else
378 comp = 0;
380 } else if (type == subvol_search_by_uuid) {
381 entry = rb_entry(n, struct subvol_info, rb_local_node);
382 comp = memcmp(entry->uuid, uuid, BTRFS_UUID_SIZE);
383 } else if (type == subvol_search_by_root_id) {
384 entry = rb_entry(n, struct subvol_info,
385 rb_root_id_node);
386 comp = entry->root_id - root_id;
387 } else if (type == subvol_search_by_path) {
388 entry = rb_entry(n, struct subvol_info, rb_path_node);
389 comp = strcmp(entry->path, path);
390 } else {
391 BUG();
393 if (comp < 0)
394 n = n->rb_left;
395 else if (comp > 0)
396 n = n->rb_right;
397 else
398 return entry;
400 return NULL;
404 * this function will be only called if kernel dosen't support uuid tree.
406 static struct subvol_info *subvol_uuid_search_old(struct subvol_uuid_search *s,
407 u64 root_id, const u8 *uuid, u64 transid,
408 const char *path,
409 enum subvol_search_type type)
411 struct rb_root *root;
412 if (type == subvol_search_by_received_uuid)
413 root = &s->received_subvols;
414 else if (type == subvol_search_by_uuid)
415 root = &s->local_subvols;
416 else if (type == subvol_search_by_root_id)
417 root = &s->root_id_subvols;
418 else if (type == subvol_search_by_path)
419 root = &s->path_subvols;
420 else
421 return NULL;
422 return tree_search(root, root_id, uuid, transid, path, type);
424 #else
425 void subvol_uuid_search_add(struct subvol_uuid_search *s,
426 struct subvol_info *si)
428 if (si) {
429 free(si->path);
430 free(si);
433 #endif
435 struct subvol_info *subvol_uuid_search(struct subvol_uuid_search *s,
436 u64 root_id, const u8 *uuid, u64 transid,
437 const char *path,
438 enum subvol_search_type type)
440 int ret = 0;
441 struct btrfs_root_item root_item;
442 struct subvol_info *info = NULL;
444 #ifdef BTRFS_COMPAT_SEND_NO_UUID_TREE
445 if (!s->uuid_tree_existed)
446 return subvol_uuid_search_old(s, root_id, uuid, transid,
447 path, type);
448 #endif
449 switch (type) {
450 case subvol_search_by_received_uuid:
451 ret = btrfs_lookup_uuid_received_subvol_item(s->mnt_fd, uuid,
452 &root_id);
453 break;
454 case subvol_search_by_uuid:
455 ret = btrfs_lookup_uuid_subvol_item(s->mnt_fd, uuid, &root_id);
456 break;
457 case subvol_search_by_root_id:
458 break;
459 case subvol_search_by_path:
460 ret = btrfs_get_root_id_by_sub_path(s->mnt_fd, path, &root_id);
461 break;
462 default:
463 ret = -EINVAL;
464 break;
467 if (ret)
468 goto out;
470 ret = btrfs_read_root_item(s->mnt_fd, root_id, &root_item);
471 if (ret)
472 goto out;
474 info = calloc(1, sizeof(*info));
475 info->root_id = root_id;
476 memcpy(info->uuid, root_item.uuid, BTRFS_UUID_SIZE);
477 memcpy(info->received_uuid, root_item.received_uuid, BTRFS_UUID_SIZE);
478 memcpy(info->parent_uuid, root_item.parent_uuid, BTRFS_UUID_SIZE);
479 info->ctransid = btrfs_root_ctransid(&root_item);
480 info->otransid = btrfs_root_otransid(&root_item);
481 info->stransid = btrfs_root_stransid(&root_item);
482 info->rtransid = btrfs_root_rtransid(&root_item);
483 if (type == subvol_search_by_path) {
484 info->path = strdup(path);
485 } else {
486 info->path = malloc(PATH_MAX);
487 ret = btrfs_subvolid_resolve(s->mnt_fd, info->path,
488 PATH_MAX, root_id);
491 out:
492 if (ret && info) {
493 free(info->path);
494 free(info);
495 info = NULL;
498 return info;
501 #ifdef BTRFS_COMPAT_SEND_NO_UUID_TREE
502 static int is_uuid_tree_supported(int fd)
504 int ret;
505 struct btrfs_ioctl_search_args args;
506 struct btrfs_ioctl_search_key *sk = &args.key;
508 memset(&args, 0, sizeof(args));
510 sk->tree_id = BTRFS_ROOT_TREE_OBJECTID;
512 sk->min_objectid = BTRFS_UUID_TREE_OBJECTID;
513 sk->max_objectid = BTRFS_UUID_TREE_OBJECTID;
514 sk->max_type = BTRFS_ROOT_ITEM_KEY;
515 sk->min_type = BTRFS_ROOT_ITEM_KEY;
516 sk->max_offset = (u64)-1;
517 sk->max_transid = (u64)-1;
518 sk->nr_items = 1;
520 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
521 if (ret < 0)
522 return ret;
524 /* the ioctl returns the number of item it found in nr_items */
525 if (sk->nr_items == 0)
526 return 0;
528 return 1;
532 * this function is mainly used to read all root items
533 * it will be only used when we use older kernel which uuid
534 * tree is not supported yet
536 int subvol_uuid_search_init(int mnt_fd, struct subvol_uuid_search *s)
538 int ret;
539 struct btrfs_ioctl_search_args args;
540 struct btrfs_ioctl_search_key *sk = &args.key;
541 struct btrfs_ioctl_search_header *sh;
542 struct btrfs_root_item *root_item_ptr;
543 struct btrfs_root_item root_item = {};
544 struct subvol_info *si = NULL;
545 int root_item_valid = 0;
546 unsigned long off = 0;
547 int i;
548 char *path;
550 s->mnt_fd = mnt_fd;
552 s->root_id_subvols = RB_ROOT;
553 s->local_subvols = RB_ROOT;
554 s->received_subvols = RB_ROOT;
555 s->path_subvols = RB_ROOT;
557 ret = is_uuid_tree_supported(mnt_fd);
558 if (ret < 0) {
559 fprintf(stderr,
560 "ERROR: check if we support uuid tree fails - %s\n",
561 strerror(errno));
562 return ret;
563 } else if (ret) {
564 /* uuid tree is supported */
565 s->uuid_tree_existed = 1;
566 return 0;
568 memset(&args, 0, sizeof(args));
570 sk->tree_id = BTRFS_ROOT_TREE_OBJECTID;
572 sk->max_objectid = (u64)-1;
573 sk->max_offset = (u64)-1;
574 sk->max_transid = (u64)-1;
575 sk->min_type = BTRFS_ROOT_ITEM_KEY;
576 sk->max_type = BTRFS_ROOT_BACKREF_KEY;
577 sk->nr_items = 4096;
579 while (1) {
580 ret = ioctl(mnt_fd, BTRFS_IOC_TREE_SEARCH, &args);
581 if (ret < 0) {
582 fprintf(stderr, "ERROR: can't perform the search - %s\n",
583 strerror(errno));
584 return ret;
586 if (sk->nr_items == 0)
587 break;
589 off = 0;
591 for (i = 0; i < sk->nr_items; i++) {
592 sh = (struct btrfs_ioctl_search_header *)(args.buf +
593 off);
594 off += sizeof(*sh);
596 if ((sh->objectid != 5 &&
597 sh->objectid < BTRFS_FIRST_FREE_OBJECTID) ||
598 sh->objectid > BTRFS_LAST_FREE_OBJECTID)
599 goto skip;
601 if (sh->type == BTRFS_ROOT_ITEM_KEY) {
602 /* older kernels don't have uuids+times */
603 if (sh->len < sizeof(root_item)) {
604 root_item_valid = 0;
605 goto skip;
607 root_item_ptr = (struct btrfs_root_item *)
608 (args.buf + off);
609 memcpy(&root_item, root_item_ptr,
610 sizeof(root_item));
611 root_item_valid = 1;
612 } else if (sh->type == BTRFS_ROOT_BACKREF_KEY ||
613 root_item_valid) {
614 if (!root_item_valid)
615 goto skip;
617 path = btrfs_list_path_for_root(mnt_fd,
618 sh->objectid);
619 if (!path)
620 path = strdup("");
621 if (IS_ERR(path)) {
622 ret = PTR_ERR(path);
623 fprintf(stderr, "ERROR: unable to "
624 "resolve path "
625 "for root %llu\n",
626 sh->objectid);
627 goto out;
630 si = calloc(1, sizeof(*si));
631 si->root_id = sh->objectid;
632 memcpy(si->uuid, root_item.uuid,
633 BTRFS_UUID_SIZE);
634 memcpy(si->parent_uuid, root_item.parent_uuid,
635 BTRFS_UUID_SIZE);
636 memcpy(si->received_uuid,
637 root_item.received_uuid,
638 BTRFS_UUID_SIZE);
639 si->ctransid = btrfs_root_ctransid(&root_item);
640 si->otransid = btrfs_root_otransid(&root_item);
641 si->stransid = btrfs_root_stransid(&root_item);
642 si->rtransid = btrfs_root_rtransid(&root_item);
643 si->path = path;
644 subvol_uuid_search_add(s, si);
645 root_item_valid = 0;
646 } else {
647 goto skip;
650 skip:
651 off += sh->len;
654 * record the mins in sk so we can make sure the
655 * next search doesn't repeat this root
657 sk->min_objectid = sh->objectid;
658 sk->min_offset = sh->offset;
659 sk->min_type = sh->type;
661 sk->nr_items = 4096;
662 if (sk->min_offset < (u64)-1)
663 sk->min_offset++;
664 else if (sk->min_objectid < (u64)-1) {
665 sk->min_objectid++;
666 sk->min_offset = 0;
667 sk->min_type = 0;
668 } else
669 break;
672 out:
673 return ret;
676 void subvol_uuid_search_finit(struct subvol_uuid_search *s)
678 struct rb_root *root = &s->root_id_subvols;
679 struct rb_node *node;
681 if (!s->uuid_tree_existed)
682 return;
684 while ((node = rb_first(root))) {
685 struct subvol_info *entry =
686 rb_entry(node, struct subvol_info, rb_root_id_node);
688 free(entry->path);
689 rb_erase(node, root);
690 free(entry);
693 s->root_id_subvols = RB_ROOT;
694 s->local_subvols = RB_ROOT;
695 s->received_subvols = RB_ROOT;
696 s->path_subvols = RB_ROOT;
698 #else
699 int subvol_uuid_search_init(int mnt_fd, struct subvol_uuid_search *s)
701 s->mnt_fd = mnt_fd;
703 return 0;
706 void subvol_uuid_search_finit(struct subvol_uuid_search *s)
709 #endif
711 int path_cat_out(char *out, const char *p1, const char *p2)
713 int p1_len = strlen(p1);
714 int p2_len = strlen(p2);
716 if (p1_len + p2_len + 2 >= PATH_MAX)
717 return -ENAMETOOLONG;
719 if (p1_len && p1[p1_len - 1] == '/')
720 p1_len--;
721 if (p2_len && p2[p2_len - 1] == '/')
722 p2_len--;
723 sprintf(out, "%.*s/%.*s", p1_len, p1, p2_len, p2);
725 return 0;
728 __attribute__((deprecated))
729 char *path_cat(const char *p1, const char *p2)
731 int p1_len = strlen(p1);
732 int p2_len = strlen(p2);
733 char *new = malloc(p1_len + p2_len + 2);
735 path_cat_out(new, p1, p2);
737 return new;
740 int path_cat3_out(char *out, const char *p1, const char *p2, const char *p3)
742 int p1_len = strlen(p1);
743 int p2_len = strlen(p2);
744 int p3_len = strlen(p3);
746 if (p1_len + p2_len + p3_len + 3 >= PATH_MAX)
747 return -ENAMETOOLONG;
749 if (p1_len && p1[p1_len - 1] == '/')
750 p1_len--;
751 if (p2_len && p2[p2_len - 1] == '/')
752 p2_len--;
753 if (p3_len && p3[p3_len - 1] == '/')
754 p3_len--;
755 sprintf(out, "%.*s/%.*s/%.*s", p1_len, p1, p2_len, p2, p3_len, p3);
757 return 0;
760 __attribute__((deprecated))
761 char *path_cat3(const char *p1, const char *p2, const char *p3)
763 int p1_len = strlen(p1);
764 int p2_len = strlen(p2);
765 int p3_len = strlen(p3);
766 char *new = malloc(p1_len + p2_len + p3_len + 3);
768 path_cat3_out(new, p1, p2, p3);
770 return new;