1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright (C) 1991-1998 Linus Torvalds
4 * Re-organised Feb 1998 Russell King
5 * Copyright (C) 2020 Christoph Hellwig
6 */
7 #include <linux/fs.h>
8 #include <linux/major.h>
9 #include <linux/slab.h>
10 #include <linux/ctype.h>
11 #include <linux/vmalloc.h>
12 #include <linux/raid/detect.h>
13 #include "check.h"
14
15 static int (*const check_part[])(struct parsed_partitions *) = {
16 /*
17 * Probe partition formats with tables at disk address 0
18 * that also have an ADFS boot block at 0xdc0.
19 */
20 #ifdef CONFIG_ACORN_PARTITION_ICS
21 adfspart_check_ICS,
22 #endif
23 #ifdef CONFIG_ACORN_PARTITION_POWERTEC
24 adfspart_check_POWERTEC,
25 #endif
26 #ifdef CONFIG_ACORN_PARTITION_EESOX
27 adfspart_check_EESOX,
28 #endif
29
30 /*
31 * Now move on to formats that only have partition info at
32 * disk address 0xdc0. Since these may also have stale
33 * PC/BIOS partition tables, they need to come before
34 * the msdos entry.
35 */
36 #ifdef CONFIG_ACORN_PARTITION_CUMANA
37 adfspart_check_CUMANA,
38 #endif
39 #ifdef CONFIG_ACORN_PARTITION_ADFS
40 adfspart_check_ADFS,
41 #endif
42
43 #ifdef CONFIG_CMDLINE_PARTITION
44 cmdline_partition,
45 #endif
46 #ifdef CONFIG_EFI_PARTITION
47 efi_partition, /* this must come before msdos */
48 #endif
49 #ifdef CONFIG_SGI_PARTITION
50 sgi_partition,
51 #endif
52 #ifdef CONFIG_LDM_PARTITION
53 ldm_partition, /* this must come before msdos */
54 #endif
55 #ifdef CONFIG_MSDOS_PARTITION
56 msdos_partition,
57 #endif
58 #ifdef CONFIG_OSF_PARTITION
59 osf_partition,
60 #endif
61 #ifdef CONFIG_SUN_PARTITION
62 sun_partition,
63 #endif
64 #ifdef CONFIG_AMIGA_PARTITION
65 amiga_partition,
66 #endif
67 #ifdef CONFIG_ATARI_PARTITION
68 atari_partition,
69 #endif
70 #ifdef CONFIG_MAC_PARTITION
71 mac_partition,
72 #endif
73 #ifdef CONFIG_ULTRIX_PARTITION
74 ultrix_partition,
75 #endif
76 #ifdef CONFIG_IBM_PARTITION
77 ibm_partition,
78 #endif
79 #ifdef CONFIG_KARMA_PARTITION
80 karma_partition,
81 #endif
82 #ifdef CONFIG_SYSV68_PARTITION
83 sysv68_partition,
84 #endif
85 NULL
86 };
87
allocate_partitions(struct gendisk * hd)88 static struct parsed_partitions *allocate_partitions(struct gendisk *hd)
89 {
90 struct parsed_partitions *state;
91 int nr = DISK_MAX_PARTS;
92
93 state = kzalloc(sizeof(*state), GFP_KERNEL);
94 if (!state)
95 return NULL;
96
97 state->parts = vzalloc(array_size(nr, sizeof(state->parts[0])));
98 if (!state->parts) {
99 kfree(state);
100 return NULL;
101 }
102
103 state->limit = nr;
104
105 return state;
106 }
107
free_partitions(struct parsed_partitions * state)108 static void free_partitions(struct parsed_partitions *state)
109 {
110 vfree(state->parts);
111 kfree(state);
112 }
113
check_partition(struct gendisk * hd)114 static struct parsed_partitions *check_partition(struct gendisk *hd)
115 {
116 struct parsed_partitions *state;
117 int i, res, err;
118
119 state = allocate_partitions(hd);
120 if (!state)
121 return NULL;
122 state->pp_buf = (char *)__get_free_page(GFP_KERNEL);
123 if (!state->pp_buf) {
124 free_partitions(state);
125 return NULL;
126 }
127 state->pp_buf[0] = '\0';
128
129 state->disk = hd;
130 snprintf(state->name, BDEVNAME_SIZE, "%s", hd->disk_name);
131 snprintf(state->pp_buf, PAGE_SIZE, " %s:", state->name);
132 if (isdigit(state->name[strlen(state->name)-1]))
133 sprintf(state->name, "p");
134
135 i = res = err = 0;
136 while (!res && check_part[i]) {
137 memset(state->parts, 0, state->limit * sizeof(state->parts[0]));
138 res = check_part[i++](state);
139 if (res < 0) {
140 /*
141 * We have hit an I/O error which we don't report now.
142 * But record it, and let the others do their job.
143 */
144 err = res;
145 res = 0;
146 }
147
148 }
149 if (res > 0) {
150 printk(KERN_INFO "%s", state->pp_buf);
151
152 free_page((unsigned long)state->pp_buf);
153 return state;
154 }
155 if (state->access_beyond_eod)
156 err = -ENOSPC;
157 /*
158 * The partition is unrecognized. So report I/O errors if there were any
159 */
160 if (err)
161 res = err;
162 if (res) {
163 strlcat(state->pp_buf,
164 " unable to read partition table\n", PAGE_SIZE);
165 printk(KERN_INFO "%s", state->pp_buf);
166 }
167
168 free_page((unsigned long)state->pp_buf);
169 free_partitions(state);
170 return ERR_PTR(res);
171 }
172
part_partition_show(struct device * dev,struct device_attribute * attr,char * buf)173 static ssize_t part_partition_show(struct device *dev,
174 struct device_attribute *attr, char *buf)
175 {
176 return sprintf(buf, "%d\n", bdev_partno(dev_to_bdev(dev)));
177 }
178
part_start_show(struct device * dev,struct device_attribute * attr,char * buf)179 static ssize_t part_start_show(struct device *dev,
180 struct device_attribute *attr, char *buf)
181 {
182 return sprintf(buf, "%llu\n", dev_to_bdev(dev)->bd_start_sect);
183 }
184
part_ro_show(struct device * dev,struct device_attribute * attr,char * buf)185 static ssize_t part_ro_show(struct device *dev,
186 struct device_attribute *attr, char *buf)
187 {
188 return sprintf(buf, "%d\n", bdev_read_only(dev_to_bdev(dev)));
189 }
190
part_alignment_offset_show(struct device * dev,struct device_attribute * attr,char * buf)191 static ssize_t part_alignment_offset_show(struct device *dev,
192 struct device_attribute *attr, char *buf)
193 {
194 return sprintf(buf, "%u\n", bdev_alignment_offset(dev_to_bdev(dev)));
195 }
196
part_discard_alignment_show(struct device * dev,struct device_attribute * attr,char * buf)197 static ssize_t part_discard_alignment_show(struct device *dev,
198 struct device_attribute *attr, char *buf)
199 {
200 return sprintf(buf, "%u\n", bdev_discard_alignment(dev_to_bdev(dev)));
201 }
202
203 static DEVICE_ATTR(partition, 0444, part_partition_show, NULL);
204 static DEVICE_ATTR(start, 0444, part_start_show, NULL);
205 static DEVICE_ATTR(size, 0444, part_size_show, NULL);
206 static DEVICE_ATTR(ro, 0444, part_ro_show, NULL);
207 static DEVICE_ATTR(alignment_offset, 0444, part_alignment_offset_show, NULL);
208 static DEVICE_ATTR(discard_alignment, 0444, part_discard_alignment_show, NULL);
209 static DEVICE_ATTR(stat, 0444, part_stat_show, NULL);
210 static DEVICE_ATTR(inflight, 0444, part_inflight_show, NULL);
211 #ifdef CONFIG_FAIL_MAKE_REQUEST
212 static struct device_attribute dev_attr_fail =
213 __ATTR(make-it-fail, 0644, part_fail_show, part_fail_store);
214 #endif
215
216 static struct attribute *part_attrs[] = {
217 &dev_attr_partition.attr,
218 &dev_attr_start.attr,
219 &dev_attr_size.attr,
220 &dev_attr_ro.attr,
221 &dev_attr_alignment_offset.attr,
222 &dev_attr_discard_alignment.attr,
223 &dev_attr_stat.attr,
224 &dev_attr_inflight.attr,
225 #ifdef CONFIG_FAIL_MAKE_REQUEST
226 &dev_attr_fail.attr,
227 #endif
228 NULL
229 };
230
231 static const struct attribute_group part_attr_group = {
232 .attrs = part_attrs,
233 };
234
235 static const struct attribute_group *part_attr_groups[] = {
236 &part_attr_group,
237 #ifdef CONFIG_BLK_DEV_IO_TRACE
238 &blk_trace_attr_group,
239 #endif
240 NULL
241 };
242
part_release(struct device * dev)243 static void part_release(struct device *dev)
244 {
245 put_disk(dev_to_bdev(dev)->bd_disk);
246 bdev_drop(dev_to_bdev(dev));
247 }
248
part_uevent(const struct device * dev,struct kobj_uevent_env * env)249 static int part_uevent(const struct device *dev, struct kobj_uevent_env *env)
250 {
251 const struct block_device *part = dev_to_bdev(dev);
252
253 add_uevent_var(env, "PARTN=%u", bdev_partno(part));
254 if (part->bd_meta_info && part->bd_meta_info->volname[0])
255 add_uevent_var(env, "PARTNAME=%s", part->bd_meta_info->volname);
256 if (part->bd_meta_info && part->bd_meta_info->uuid[0])
257 add_uevent_var(env, "PARTUUID=%s", part->bd_meta_info->uuid);
258 return 0;
259 }
260
261 const struct device_type part_type = {
262 .name = "partition",
263 .groups = part_attr_groups,
264 .release = part_release,
265 .uevent = part_uevent,
266 };
267
drop_partition(struct block_device * part)268 void drop_partition(struct block_device *part)
269 {
270 lockdep_assert_held(&part->bd_disk->open_mutex);
271
272 xa_erase(&part->bd_disk->part_tbl, bdev_partno(part));
273 kobject_put(part->bd_holder_dir);
274
275 device_del(&part->bd_device);
276 put_device(&part->bd_device);
277 }
278
whole_disk_show(struct device * dev,struct device_attribute * attr,char * buf)279 static ssize_t whole_disk_show(struct device *dev,
280 struct device_attribute *attr, char *buf)
281 {
282 return 0;
283 }
284 static const DEVICE_ATTR(whole_disk, 0444, whole_disk_show, NULL);
285
286 /*
287 * Must be called either with open_mutex held, before a disk can be opened or
288 * after all disk users are gone.
289 */
add_partition(struct gendisk * disk,int partno,sector_t start,sector_t len,int flags,struct partition_meta_info * info)290 static struct block_device *add_partition(struct gendisk *disk, int partno,
291 sector_t start, sector_t len, int flags,
292 struct partition_meta_info *info)
293 {
294 dev_t devt = MKDEV(0, 0);
295 struct device *ddev = disk_to_dev(disk);
296 struct device *pdev;
297 struct block_device *bdev;
298 const char *dname;
299 int err;
300
301 lockdep_assert_held(&disk->open_mutex);
302
303 if (partno >= DISK_MAX_PARTS)
304 return ERR_PTR(-EINVAL);
305
306 /*
307 * Partitions are not supported on zoned block devices that are used as
308 * such.
309 */
310 if (bdev_is_zoned(disk->part0)) {
311 pr_warn("%s: partitions not supported on host managed zoned block device\n",
312 disk->disk_name);
313 return ERR_PTR(-ENXIO);
314 }
315
316 if (xa_load(&disk->part_tbl, partno))
317 return ERR_PTR(-EBUSY);
318
319 /* ensure we always have a reference to the whole disk */
320 get_device(disk_to_dev(disk));
321
322 err = -ENOMEM;
323 bdev = bdev_alloc(disk, partno);
324 if (!bdev)
325 goto out_put_disk;
326
327 bdev->bd_start_sect = start;
328 bdev_set_nr_sectors(bdev, len);
329
330 pdev = &bdev->bd_device;
331 dname = dev_name(ddev);
332 if (isdigit(dname[strlen(dname) - 1]))
333 dev_set_name(pdev, "%sp%d", dname, partno);
334 else
335 dev_set_name(pdev, "%s%d", dname, partno);
336
337 device_initialize(pdev);
338 pdev->class = &block_class;
339 pdev->type = &part_type;
340 pdev->parent = ddev;
341
342 /* in consecutive minor range? */
343 if (bdev_partno(bdev) < disk->minors) {
344 devt = MKDEV(disk->major, disk->first_minor + bdev_partno(bdev));
345 } else {
346 err = blk_alloc_ext_minor();
347 if (err < 0)
348 goto out_put;
349 devt = MKDEV(BLOCK_EXT_MAJOR, err);
350 }
351 pdev->devt = devt;
352
353 if (info) {
354 err = -ENOMEM;
355 bdev->bd_meta_info = kmemdup(info, sizeof(*info), GFP_KERNEL);
356 if (!bdev->bd_meta_info)
357 goto out_put;
358 }
359
360 /* delay uevent until 'holders' subdir is created */
361 dev_set_uevent_suppress(pdev, 1);
362 err = device_add(pdev);
363 if (err)
364 goto out_put;
365
366 err = -ENOMEM;
367 bdev->bd_holder_dir = kobject_create_and_add("holders", &pdev->kobj);
368 if (!bdev->bd_holder_dir)
369 goto out_del;
370
371 dev_set_uevent_suppress(pdev, 0);
372 if (flags & ADDPART_FLAG_WHOLEDISK) {
373 err = device_create_file(pdev, &dev_attr_whole_disk);
374 if (err)
375 goto out_del;
376 }
377
378 /* everything is up and running, commence */
379 err = xa_insert(&disk->part_tbl, partno, bdev, GFP_KERNEL);
380 if (err)
381 goto out_del;
382 bdev_add(bdev, devt);
383
384 /* suppress uevent if the disk suppresses it */
385 if (!dev_get_uevent_suppress(ddev))
386 kobject_uevent(&pdev->kobj, KOBJ_ADD);
387 return bdev;
388
389 out_del:
390 kobject_put(bdev->bd_holder_dir);
391 device_del(pdev);
392 out_put:
393 put_device(pdev);
394 return ERR_PTR(err);
395 out_put_disk:
396 put_disk(disk);
397 return ERR_PTR(err);
398 }
399
partition_overlaps(struct gendisk * disk,sector_t start,sector_t length,int skip_partno)400 static bool partition_overlaps(struct gendisk *disk, sector_t start,
401 sector_t length, int skip_partno)
402 {
403 struct block_device *part;
404 bool overlap = false;
405 unsigned long idx;
406
407 rcu_read_lock();
408 xa_for_each_start(&disk->part_tbl, idx, part, 1) {
409 if (bdev_partno(part) != skip_partno &&
410 start < part->bd_start_sect + bdev_nr_sectors(part) &&
411 start + length > part->bd_start_sect) {
412 overlap = true;
413 break;
414 }
415 }
416 rcu_read_unlock();
417
418 return overlap;
419 }
420
bdev_add_partition(struct gendisk * disk,int partno,sector_t start,sector_t length)421 int bdev_add_partition(struct gendisk *disk, int partno, sector_t start,
422 sector_t length)
423 {
424 struct block_device *part;
425 int ret;
426
427 mutex_lock(&disk->open_mutex);
428 if (!disk_live(disk)) {
429 ret = -ENXIO;
430 goto out;
431 }
432
433 if (disk->flags & GENHD_FL_NO_PART) {
434 ret = -EINVAL;
435 goto out;
436 }
437
438 if (partition_overlaps(disk, start, length, -1)) {
439 ret = -EBUSY;
440 goto out;
441 }
442
443 part = add_partition(disk, partno, start, length,
444 ADDPART_FLAG_NONE, NULL);
445 ret = PTR_ERR_OR_ZERO(part);
446 out:
447 mutex_unlock(&disk->open_mutex);
448 return ret;
449 }
450
bdev_del_partition(struct gendisk * disk,int partno)451 int bdev_del_partition(struct gendisk *disk, int partno)
452 {
453 struct block_device *part = NULL;
454 int ret = -ENXIO;
455
456 mutex_lock(&disk->open_mutex);
457 part = xa_load(&disk->part_tbl, partno);
458 if (!part)
459 goto out_unlock;
460
461 ret = -EBUSY;
462 if (atomic_read(&part->bd_openers))
463 goto out_unlock;
464
465 /*
466 * We verified that @part->bd_openers is zero above and so
467 * @part->bd_holder{_ops} can't be set. And since we hold
468 * @disk->open_mutex the device can't be claimed by anyone.
469 *
470 * So no need to call @part->bd_holder_ops->mark_dead() here.
471 * Just delete the partition and invalidate it.
472 */
473
474 bdev_unhash(part);
475 invalidate_bdev(part);
476 drop_partition(part);
477 ret = 0;
478 out_unlock:
479 mutex_unlock(&disk->open_mutex);
480 return ret;
481 }
482
bdev_resize_partition(struct gendisk * disk,int partno,sector_t start,sector_t length)483 int bdev_resize_partition(struct gendisk *disk, int partno, sector_t start,
484 sector_t length)
485 {
486 struct block_device *part = NULL;
487 int ret = -ENXIO;
488
489 mutex_lock(&disk->open_mutex);
490 part = xa_load(&disk->part_tbl, partno);
491 if (!part)
492 goto out_unlock;
493
494 ret = -EINVAL;
495 if (start != part->bd_start_sect)
496 goto out_unlock;
497
498 ret = -EBUSY;
499 if (partition_overlaps(disk, start, length, partno))
500 goto out_unlock;
501
502 bdev_set_nr_sectors(part, length);
503
504 ret = 0;
505 out_unlock:
506 mutex_unlock(&disk->open_mutex);
507 return ret;
508 }
509
disk_unlock_native_capacity(struct gendisk * disk)510 static bool disk_unlock_native_capacity(struct gendisk *disk)
511 {
512 if (!disk->fops->unlock_native_capacity ||
513 test_and_set_bit(GD_NATIVE_CAPACITY, &disk->state)) {
514 printk(KERN_CONT "truncated\n");
515 return false;
516 }
517
518 printk(KERN_CONT "enabling native capacity\n");
519 disk->fops->unlock_native_capacity(disk);
520 return true;
521 }
522
blk_add_partition(struct gendisk * disk,struct parsed_partitions * state,int p)523 static bool blk_add_partition(struct gendisk *disk,
524 struct parsed_partitions *state, int p)
525 {
526 sector_t size = state->parts[p].size;
527 sector_t from = state->parts[p].from;
528 struct block_device *part;
529
530 if (!size)
531 return true;
532
533 if (from >= get_capacity(disk)) {
534 printk(KERN_WARNING
535 "%s: p%d start %llu is beyond EOD, ",
536 disk->disk_name, p, (unsigned long long) from);
537 if (disk_unlock_native_capacity(disk))
538 return false;
539 return true;
540 }
541
542 if (from + size > get_capacity(disk)) {
543 printk(KERN_WARNING
544 "%s: p%d size %llu extends beyond EOD, ",
545 disk->disk_name, p, (unsigned long long) size);
546
547 if (disk_unlock_native_capacity(disk))
548 return false;
549
550 /*
551 * We can not ignore partitions of broken tables created by for
552 * example camera firmware, but we limit them to the end of the
553 * disk to avoid creating invalid block devices.
554 */
555 size = get_capacity(disk) - from;
556 }
557
558 part = add_partition(disk, p, from, size, state->parts[p].flags,
559 &state->parts[p].info);
560 if (IS_ERR(part)) {
561 if (PTR_ERR(part) != -ENXIO) {
562 printk(KERN_ERR " %s: p%d could not be added: %pe\n",
563 disk->disk_name, p, part);
564 }
565 return true;
566 }
567
568 if (IS_BUILTIN(CONFIG_BLK_DEV_MD) &&
569 (state->parts[p].flags & ADDPART_FLAG_RAID))
570 md_autodetect_dev(part->bd_dev);
571
572 return true;
573 }
574
blk_add_partitions(struct gendisk * disk)575 static int blk_add_partitions(struct gendisk *disk)
576 {
577 struct parsed_partitions *state;
578 int ret = -EAGAIN, p;
579
580 if (!disk_has_partscan(disk))
581 return 0;
582
583 state = check_partition(disk);
584 if (!state)
585 return 0;
586 if (IS_ERR(state)) {
587 /*
588 * I/O error reading the partition table. If we tried to read
589 * beyond EOD, retry after unlocking the native capacity.
590 */
591 if (PTR_ERR(state) == -ENOSPC) {
592 printk(KERN_WARNING "%s: partition table beyond EOD, ",
593 disk->disk_name);
594 if (disk_unlock_native_capacity(disk))
595 return -EAGAIN;
596 }
597 return -EIO;
598 }
599
600 /*
601 * Partitions are not supported on host managed zoned block devices.
602 */
603 if (bdev_is_zoned(disk->part0)) {
604 pr_warn("%s: ignoring partition table on host managed zoned block device\n",
605 disk->disk_name);
606 ret = 0;
607 goto out_free_state;
608 }
609
610 /*
611 * If we read beyond EOD, try unlocking native capacity even if the
612 * partition table was successfully read as we could be missing some
613 * partitions.
614 */
615 if (state->access_beyond_eod) {
616 printk(KERN_WARNING
617 "%s: partition table partially beyond EOD, ",
618 disk->disk_name);
619 if (disk_unlock_native_capacity(disk))
620 goto out_free_state;
621 }
622
623 /* tell userspace that the media / partition table may have changed */
624 kobject_uevent(&disk_to_dev(disk)->kobj, KOBJ_CHANGE);
625
626 for (p = 1; p < state->limit; p++)
627 if (!blk_add_partition(disk, state, p))
628 goto out_free_state;
629
630 ret = 0;
631 out_free_state:
632 free_partitions(state);
633 return ret;
634 }
635
bdev_disk_changed(struct gendisk * disk,bool invalidate)636 int bdev_disk_changed(struct gendisk *disk, bool invalidate)
637 {
638 struct block_device *part;
639 unsigned long idx;
640 int ret = 0;
641
642 lockdep_assert_held(&disk->open_mutex);
643
644 if (!disk_live(disk))
645 return -ENXIO;
646
647 rescan:
648 if (disk->open_partitions)
649 return -EBUSY;
650 sync_blockdev(disk->part0);
651 invalidate_bdev(disk->part0);
652
653 xa_for_each_start(&disk->part_tbl, idx, part, 1) {
654 /*
655 * Remove the block device from the inode hash, so that
656 * it cannot be looked up any more even when openers
657 * still hold references.
658 */
659 bdev_unhash(part);
660
661 /*
662 * If @disk->open_partitions isn't elevated but there's
663 * still an active holder of that block device things
664 * are broken.
665 */
666 WARN_ON_ONCE(atomic_read(&part->bd_openers));
667 invalidate_bdev(part);
668 drop_partition(part);
669 }
670 clear_bit(GD_NEED_PART_SCAN, &disk->state);
671
672 /*
673 * Historically we only set the capacity to zero for devices that
674 * support partitions (independ of actually having partitions created).
675 * Doing that is rather inconsistent, but changing it broke legacy
676 * udisks polling for legacy ide-cdrom devices. Use the crude check
677 * below to get the sane behavior for most device while not breaking
678 * userspace for this particular setup.
679 */
680 if (invalidate) {
681 if (!(disk->flags & GENHD_FL_NO_PART) ||
682 !(disk->flags & GENHD_FL_REMOVABLE))
683 set_capacity(disk, 0);
684 }
685
686 if (get_capacity(disk)) {
687 ret = blk_add_partitions(disk);
688 if (ret == -EAGAIN)
689 goto rescan;
690 } else if (invalidate) {
691 /*
692 * Tell userspace that the media / partition table may have
693 * changed.
694 */
695 kobject_uevent(&disk_to_dev(disk)->kobj, KOBJ_CHANGE);
696 }
697
698 return ret;
699 }
700 /*
701 * Only exported for loop and dasd for historic reasons. Don't use in new
702 * code!
703 */
704 EXPORT_SYMBOL_GPL(bdev_disk_changed);
705
read_part_sector(struct parsed_partitions * state,sector_t n,Sector * p)706 void *read_part_sector(struct parsed_partitions *state, sector_t n, Sector *p)
707 {
708 struct address_space *mapping = state->disk->part0->bd_mapping;
709 struct folio *folio;
710
711 if (n >= get_capacity(state->disk)) {
712 state->access_beyond_eod = true;
713 goto out;
714 }
715
716 folio = read_mapping_folio(mapping, n >> PAGE_SECTORS_SHIFT, NULL);
717 if (IS_ERR(folio))
718 goto out;
719
720 p->v = folio;
721 return folio_address(folio) + offset_in_folio(folio, n * SECTOR_SIZE);
722 out:
723 p->v = NULL;
724 return NULL;
725 }
726