Skip to content

Commit e673aa2

Browse files
committed
btrfs-progs: rename and move __strncpy_null to string-utils
Now that there's only __strncpy_null we can drop the underscore and move it to string-utils as it's a generic string function rather than something for paths. Signed-off-by: David Sterba <[email protected]>
1 parent 2d95c51 commit e673aa2

13 files changed

+56
-56
lines changed

cmds/device.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ static int cmd_device_add(const struct cmd_struct *cmd,
169169
}
170170

171171
memset(&ioctl_args, 0, sizeof(ioctl_args));
172-
__strncpy_null(ioctl_args.name, path, sizeof(ioctl_args.name));
172+
strncpy_null(ioctl_args.name, path, sizeof(ioctl_args.name));
173173
res = ioctl(fdmnt, BTRFS_IOC_ADD_DEV, &ioctl_args);
174174
if (res < 0) {
175175
error("error adding device '%s': %m", path);
@@ -287,7 +287,7 @@ static int _cmd_device_remove(const struct cmd_struct *cmd,
287287
} else if (strcmp(argv[i], "missing") == 0 ||
288288
cancel ||
289289
path_is_block_device(argv[i]) == 1) {
290-
__strncpy_null(argv2.name, argv[i], sizeof(argv2.name));
290+
strncpy_null(argv2.name, argv[i], sizeof(argv2.name));
291291
} else {
292292
error("not a block device: %s", argv[i]);
293293
ret++;
@@ -312,7 +312,7 @@ static int _cmd_device_remove(const struct cmd_struct *cmd,
312312
continue;
313313
}
314314
memset(&arg, 0, sizeof(arg));
315-
__strncpy_null(arg.name, argv[i], sizeof(arg.name));
315+
strncpy_null(arg.name, argv[i], sizeof(arg.name));
316316
res = ioctl(fdmnt, BTRFS_IOC_RM_DEV, &arg);
317317
}
318318

@@ -396,7 +396,7 @@ static int btrfs_forget_devices(const char *path)
396396

397397
memset(&args, 0, sizeof(args));
398398
if (path)
399-
__strncpy_null(args.name, path, sizeof(args.name));
399+
strncpy_null(args.name, path, sizeof(args.name));
400400
ret = ioctl(fd, BTRFS_IOC_FORGET_DEV, &args);
401401
if (ret)
402402
ret = -errno;
@@ -557,7 +557,7 @@ static int cmd_device_ready(const struct cmd_struct *cmd, int argc, char **argv)
557557
}
558558

559559
memset(&args, 0, sizeof(args));
560-
__strncpy_null(args.name, path, sizeof(args.name));
560+
strncpy_null(args.name, path, sizeof(args.name));
561561
ret = ioctl(fd, BTRFS_IOC_DEVICES_READY, &args);
562562
if (ret < 0) {
563563
error("unable to determine if device '%s' is ready for mount: %m",

cmds/filesystem.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1441,7 +1441,7 @@ static int cmd_filesystem_resize(const struct cmd_struct *cmd,
14411441
memset(&args, 0, sizeof(args));
14421442
if (devid == (u64)-1) {
14431443
/* Ok to copy the string verbatim. */
1444-
__strncpy_null(args.name, amount, sizeof(args.name));
1444+
strncpy_null(args.name, amount, sizeof(args.name));
14451445
} else {
14461446
/* The implicit devid 1 needs to be adjusted. */
14471447
snprintf(args.name, sizeof(args.name) - 1, "%llu:%s", devid, amount);

cmds/receive.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ static int process_subvol(const char *path, const u8 *uuid, u64 ctransid,
179179
}
180180

181181
if (*rctx->dest_dir_path == 0) {
182-
__strncpy_null(rctx->cur_subvol_path, path, sizeof(rctx->cur_subvol_path));
182+
strncpy_null(rctx->cur_subvol_path, path, sizeof(rctx->cur_subvol_path));
183183
} else {
184184
ret = path_cat_out(rctx->cur_subvol_path, rctx->dest_dir_path,
185185
path);
@@ -209,7 +209,7 @@ static int process_subvol(const char *path, const u8 *uuid, u64 ctransid,
209209
}
210210

211211
memset(&args_v1, 0, sizeof(args_v1));
212-
__strncpy_null(args_v1.name, path, sizeof(args_v1.name));
212+
strncpy_null(args_v1.name, path, sizeof(args_v1.name));
213213
ret = ioctl(rctx->dest_dir_fd, BTRFS_IOC_SUBVOL_CREATE, &args_v1);
214214
if (ret < 0) {
215215
ret = -errno;
@@ -249,7 +249,7 @@ static int process_snapshot(const char *path, const u8 *uuid, u64 ctransid,
249249
}
250250

251251
if (*rctx->dest_dir_path == 0) {
252-
__strncpy_null(rctx->cur_subvol_path, path, sizeof(rctx->cur_subvol_path));
252+
strncpy_null(rctx->cur_subvol_path, path, sizeof(rctx->cur_subvol_path));
253253
} else {
254254
ret = path_cat_out(rctx->cur_subvol_path, rctx->dest_dir_path,
255255
path);
@@ -281,7 +281,7 @@ static int process_snapshot(const char *path, const u8 *uuid, u64 ctransid,
281281
}
282282

283283
memset(&args_v2, 0, sizeof(args_v2));
284-
__strncpy_null(args_v2.name, path, sizeof(args_v2.name));
284+
strncpy_null(args_v2.name, path, sizeof(args_v2.name));
285285

286286
parent_subvol = subvol_uuid_search(rctx->mnt_fd, 0, parent_uuid,
287287
parent_ctransid, NULL,
@@ -663,7 +663,7 @@ static int open_inode_for_write(struct btrfs_receive *rctx, const char *path)
663663
error("cannot open %s: %m", path);
664664
goto out;
665665
}
666-
__strncpy_null(rctx->write_path, path, sizeof(rctx->write_path));
666+
strncpy_null(rctx->write_path, path, sizeof(rctx->write_path));
667667

668668
out:
669669
return ret;

cmds/subvolume.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ static int create_one_subvolume(const char *dst, struct btrfs_qgroup_inherit *in
197197
char dstdir_dup[PATH_MAX];
198198
char *token;
199199

200-
__strncpy_null(dstdir_dup, dstdir, sizeof(dstdir_dup));
200+
strncpy_null(dstdir_dup, dstdir, sizeof(dstdir_dup));
201201
if (dstdir_dup[0] == '/')
202202
strcat(p, "/");
203203

@@ -233,7 +233,7 @@ static int create_one_subvolume(const char *dst, struct btrfs_qgroup_inherit *in
233233
struct btrfs_ioctl_vol_args_v2 args;
234234

235235
memset(&args, 0, sizeof(args));
236-
__strncpy_null(args.name, newname, sizeof(args.name));
236+
strncpy_null(args.name, newname, sizeof(args.name));
237237
args.flags |= BTRFS_SUBVOL_QGROUP_INHERIT;
238238
args.size = btrfs_qgroup_inherit_size(inherit);
239239
args.qgroup_inherit = inherit;
@@ -243,7 +243,7 @@ static int create_one_subvolume(const char *dst, struct btrfs_qgroup_inherit *in
243243
struct btrfs_ioctl_vol_args args;
244244

245245
memset(&args, 0, sizeof(args));
246-
__strncpy_null(args.name, newname, sizeof(args.name));
246+
strncpy_null(args.name, newname, sizeof(args.name));
247247
ret = ioctl(fddst, BTRFS_IOC_SUBVOL_CREATE, &args);
248248
}
249249

@@ -737,7 +737,7 @@ static int cmd_subvolume_snapshot(const struct cmd_struct *cmd, int argc, char *
737737
args.size = btrfs_qgroup_inherit_size(inherit);
738738
args.qgroup_inherit = inherit;
739739
}
740-
__strncpy_null(args.name, newname, sizeof(args.name));
740+
strncpy_null(args.name, newname, sizeof(args.name));
741741

742742
res = ioctl(fddst, BTRFS_IOC_SNAP_CREATE_V2, &args);
743743
if (res < 0) {

common/device-scan.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
#include "common/utils.h"
5252
#include "common/defs.h"
5353
#include "common/open-utils.h"
54+
#include "common/string-utils.h"
5455
#include "common/units.h"
5556

5657
static int btrfs_scan_done = 0;
@@ -237,7 +238,7 @@ int btrfs_register_one_device(const char *fname)
237238
return -errno;
238239
}
239240
memset(&args, 0, sizeof(args));
240-
__strncpy_null(args.name, fname, sizeof(args.name));
241+
strncpy_null(args.name, fname, sizeof(args.name));
241242
ret = ioctl(fd, BTRFS_IOC_SCAN_DEV, &args);
242243
if (ret < 0) {
243244
error("device scan failed on '%s': %m", fname);
@@ -468,7 +469,7 @@ int btrfs_scan_devices(int verbose)
468469
if (!dev)
469470
continue;
470471
/* if we are here its definitely a btrfs disk*/
471-
__strncpy_null(path, blkid_dev_devname(dev), sizeof(path));
472+
strncpy_null(path, blkid_dev_devname(dev), sizeof(path));
472473

473474
if (stat(path, &dev_stat) < 0)
474475
continue;

common/filesystem-utils.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#include "common/filesystem-utils.h"
2929
#include "common/messages.h"
3030
#include "common/open-utils.h"
31+
#include "common/string-utils.h"
3132
#include "common/path-utils.h"
3233

3334
/*
@@ -102,7 +103,7 @@ static int set_label_unmounted(const char *dev, const char *label)
102103
error_msg(ERROR_MSG_START_TRANS, "set label");
103104
return PTR_ERR(trans);
104105
}
105-
__strncpy_null(root->fs_info->super_copy->label, label, BTRFS_LABEL_SIZE);
106+
strncpy_null(root->fs_info->super_copy->label, label, BTRFS_LABEL_SIZE);
106107

107108
btrfs_commit_transaction(trans, root);
108109

@@ -123,7 +124,7 @@ static int set_label_mounted(const char *mount_path, const char *labelp)
123124
}
124125

125126
memset(label, 0, sizeof(label));
126-
__strncpy_null(label, labelp, BTRFS_LABEL_SIZE);
127+
strncpy_null(label, labelp, BTRFS_LABEL_SIZE);
127128
if (ioctl(fd, BTRFS_IOC_SET_FSLABEL, label) < 0) {
128129
error("unable to set label of %s: %m", mount_path);
129130
close(fd);
@@ -152,8 +153,7 @@ int get_label_unmounted(const char *dev, char *label)
152153
if(!root)
153154
return -1;
154155

155-
__strncpy_null(label, root->fs_info->super_copy->label,
156-
BTRFS_LABEL_SIZE);
156+
strncpy_null(label, root->fs_info->super_copy->label, BTRFS_LABEL_SIZE);
157157

158158
/* Now we close it since we are done. */
159159
close_ctree(root);
@@ -187,7 +187,7 @@ int get_label_mounted(const char *mount_path, char *labelp)
187187
return ret;
188188
}
189189

190-
__strncpy_null(labelp, label, BTRFS_LABEL_SIZE);
190+
strncpy_null(labelp, label, BTRFS_LABEL_SIZE);
191191
close(fd);
192192
return 0;
193193
}

common/path-utils.c

+5-24
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
*/
3636
#include <libgen.h>
3737
#include <limits.h>
38+
#include "common/string-utils.h"
3839
#include "common/path-utils.h"
3940

4041
/*
@@ -193,10 +194,10 @@ static int is_same_blk_file(const char* a, const char* b)
193194
char real_b[PATH_MAX];
194195

195196
if (!realpath(a, real_a))
196-
__strncpy_null(real_a, a, sizeof(real_a));
197+
strncpy_null(real_a, a, sizeof(real_a));
197198

198199
if (!realpath(b, real_b))
199-
__strncpy_null(real_b, b, sizeof(real_b));
200+
strncpy_null(real_b, b, sizeof(real_b));
200201

201202
/* Identical path? */
202203
if (strcmp(real_a, real_b) == 0)
@@ -345,26 +346,6 @@ char *path_canonicalize(const char *path)
345346
return canonical;
346347
}
347348

348-
/*
349-
* __strncpy_null - strncpy with null termination
350-
* @dest: the target array
351-
* @src: the source string
352-
* @n: maximum bytes to copy (size of *dest)
353-
*
354-
* Like strncpy, but ensures destination is null-terminated.
355-
*
356-
* Copies the string pointed to by src, including the terminating null
357-
* byte ('\0'), to the buffer pointed to by dest, up to a maximum
358-
* of n bytes. Then ensure that dest is null-terminated.
359-
*/
360-
char *__strncpy_null(char *dest, const char *src, size_t n)
361-
{
362-
strncpy(dest, src, n);
363-
if (n > 0)
364-
dest[n - 1] = '\0';
365-
return dest;
366-
}
367-
368349
/*
369350
* Test if path is a directory
370351
* Returns:
@@ -403,7 +384,7 @@ int path_is_in_dir(const char *parent, const char *path)
403384
char *curr_dir = tmp;
404385
int ret;
405386

406-
__strncpy_null(tmp, path, sizeof(tmp));
387+
strncpy_null(tmp, path, sizeof(tmp));
407388

408389
while (strcmp(parent, curr_dir) != 0) {
409390
if (strcmp(curr_dir, "/") == 0) {
@@ -432,7 +413,7 @@ int arg_copy_path(char *dest, const char *src, int destlen)
432413
if (len >= PATH_MAX || len >= destlen)
433414
return -ENAMETOOLONG;
434415

435-
__strncpy_null(dest, src, destlen);
416+
strncpy_null(dest, src, destlen);
436417

437418
return 0;
438419
}

common/path-utils.h

-5
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,6 @@ char *path_canonicalize(const char *path);
2626
int arg_copy_path(char *dest, const char *src, int destlen);
2727
int path_cat_out(char *out, const char *p1, const char *p2);
2828
int path_cat3_out(char *out, const char *p1, const char *p2, const char *p3);
29-
30-
char *__strncpy_null(char *dest, const char *src, size_t n);
31-
/* Helper to always get proper size of the destination string */
32-
#define strncpy_null(dest, src) __strncpy_null(dest, src, sizeof(dest))
33-
3429
int path_is_block_device(const char *file);
3530
int path_is_a_mount_point(const char *file);
3631
int path_exists(const char *file);

common/string-utils.c

+20
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,26 @@ int string_has_prefix(const char *str, const char *prefix)
4444
return (unsigned char)*prefix - (unsigned char)*str;
4545
}
4646

47+
/*
48+
* strncpy_null - strncpy with null termination
49+
* @dest: the target array
50+
* @src: the source string
51+
* @n: maximum bytes to copy (size of *dest)
52+
*
53+
* Like strncpy, but ensures destination is null-terminated.
54+
*
55+
* Copies the string pointed to by src, including the terminating null
56+
* byte ('\0'), to the buffer pointed to by dest, up to a maximum
57+
* of n bytes. Then ensure that dest is null-terminated.
58+
*/
59+
char *strncpy_null(char *dest, const char *src, size_t n)
60+
{
61+
strncpy(dest, src, n);
62+
if (n > 0)
63+
dest[n - 1] = '\0';
64+
return dest;
65+
}
66+
4767
/*
4868
* This function should be only used when parsing command arg, it won't return
4969
* error to its caller and rather exit directly just like usage().

common/string-utils.h

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
int string_is_numerical(const char *str);
2323
int string_has_prefix(const char *str, const char *prefix);
2424

25+
char *strncpy_null(char *dest, const char *src, size_t n);
26+
2527
/*
2628
* Helpers prefixed by arg_* can exit if the argument is invalid and are supposed
2729
* to be used when parsing command line options where the immediate exit is valid

convert/common.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#include "kernel-shared/uapi/btrfs_tree.h"
3131
#include "common/path-utils.h"
3232
#include "common/messages.h"
33+
#include "common/string-utils.h"
3334
#include "common/fsfeatures.h"
3435
#include "mkfs/common.h"
3536
#include "convert/common.h"
@@ -148,7 +149,7 @@ static int setup_temp_super(int fd, struct btrfs_mkfs_config *cfg,
148149
btrfs_set_super_cache_generation(&super, -1);
149150
btrfs_set_super_incompat_flags(&super, cfg->features.incompat_flags);
150151
if (cfg->label)
151-
__strncpy_null(super.label, cfg->label, BTRFS_LABEL_SIZE);
152+
strncpy_null(super.label, cfg->label, BTRFS_LABEL_SIZE);
152153

153154
/* Sys chunk array will be re-initialized at chunk tree init time */
154155
super.sys_chunk_array_size = 0;

convert/main.c

+2-3
Original file line numberDiff line numberDiff line change
@@ -1322,8 +1322,7 @@ static int do_convert(const char *devname, u32 convert_flags, u32 nodesize,
13221322

13231323
memset(root->fs_info->super_copy->label, 0, BTRFS_LABEL_SIZE);
13241324
if (convert_flags & CONVERT_FLAG_COPY_LABEL) {
1325-
__strncpy_null(root->fs_info->super_copy->label,
1326-
cctx.label, BTRFS_LABEL_SIZE);
1325+
strncpy_null(root->fs_info->super_copy->label, cctx.label, BTRFS_LABEL_SIZE);
13271326
printf("Copy label '%s'\n", root->fs_info->super_copy->label);
13281327
} else if (convert_flags & CONVERT_FLAG_SET_LABEL) {
13291328
strcpy(root->fs_info->super_copy->label, fslabel);
@@ -1938,7 +1937,7 @@ int BOX_MAIN(convert)(int argc, char *argv[])
19381937
"label too long, trimmed to %d bytes",
19391938
BTRFS_LABEL_SIZE - 1);
19401939
}
1941-
__strncpy_null(fslabel, optarg, BTRFS_LABEL_SIZE);
1940+
strncpy_null(fslabel, optarg, BTRFS_LABEL_SIZE);
19421941
break;
19431942
case 'L':
19441943
copylabel = CONVERT_FLAG_COPY_LABEL;

mkfs/common.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
#include "common/path-utils.h"
3939
#include "common/device-utils.h"
4040
#include "common/open-utils.h"
41+
#include "common/string-utils.h"
4142
#include "mkfs/common.h"
4243

4344
static u64 reference_root_table[] = {
@@ -476,7 +477,7 @@ int make_btrfs(int fd, struct btrfs_mkfs_config *cfg)
476477
btrfs_set_super_nr_global_roots(&super, 1);
477478

478479
if (cfg->label)
479-
__strncpy_null(super.label, cfg->label, BTRFS_LABEL_SIZE);
480+
strncpy_null(super.label, cfg->label, BTRFS_LABEL_SIZE);
480481

481482
/* create the tree of root objects */
482483
memset(buf->data, 0, cfg->nodesize);

0 commit comments

Comments
 (0)