File: rgrp.c

package info (click to toggle)
redhat-cluster 3.0.12-3.2%2Bdeb7u2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 10,644 kB
  • sloc: ansic: 150,556; sh: 10,974; perl: 4,383; python: 3,022; makefile: 2,253; xml: 61
file content (633 lines) | stat: -rw-r--r-- 15,153 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
#include "util.h"
#include "bio.h"
#include "fs_bits.h"
#include "fs_inode.h"
#include "fsck_incore.h"
#include "fsck.h"
#include "rgrp.h"
#include "inode.h"

/**
 * fs_compute_bitstructs - Compute the bitmap sizes
 * @rgd: The resource group descriptor
 *
 * Returns: 0 on success, -1 on error
 */
int fs_compute_bitstructs(struct fsck_rgrp *rgd)
{
	struct fsck_sb *sdp = rgd->rd_sbd;
	fs_bitmap_t *bits;
	uint32 length = rgd->rd_ri.ri_length;
	uint32 bytes_left, bytes;
	int x;

	/* Max size of an rg is 2GB.  A 2GB RG with (minimum) 512-byte blocks
	   has 4194304 blocks.  We can represent 4 blocks in one bitmap byte.
	   Therefore, all 4194304 blocks can be represented in 1048576 bytes.
	   Subtract a metadata header for each 512-byte block and we get
	   488 bytes of bitmap per block.  Divide 1048576 by 488 and we can
	   be assured we should never have more than 2149 of them. */
	if (length > 2149 || length == 0) {
		log_err("Invalid length %u found in rindex.\n", length);
		return -1;
	}
	if(!(rgd->rd_bits = (fs_bitmap_t *)malloc(length * sizeof(fs_bitmap_t)))) {
		log_err("Unable to allocate bitmap structure\n");
		stack;
		return -1;
	}
	if(!memset(rgd->rd_bits, 0, length * sizeof(fs_bitmap_t))) {
		free(rgd->rd_bits);
		log_err("Unable to zero bitmap structure\n");
		stack;
		return -1;
	}
	
	bytes_left = rgd->rd_ri.ri_bitbytes;

	for (x = 0; x < length; x++){
		bits = &rgd->rd_bits[x];

		if (length == 1){
			bytes = bytes_left;
			bits->bi_offset = sizeof(struct gfs_rgrp);
			bits->bi_start = 0;
			bits->bi_len = bytes;
		}
		else if (x == 0){
			bytes = sdp->sb.sb_bsize - sizeof(struct gfs_rgrp);
			bits->bi_offset = sizeof(struct gfs_rgrp);
			bits->bi_start = 0;
			bits->bi_len = bytes;
		}
		else if (x + 1 == length){
			bytes = bytes_left;
			bits->bi_offset = sizeof(struct gfs_meta_header);
			bits->bi_start = rgd->rd_ri.ri_bitbytes - bytes_left;
			bits->bi_len = bytes;
		}
		else{
			bytes = sdp->sb.sb_bsize - sizeof(struct gfs_meta_header);
			bits->bi_offset = sizeof(struct gfs_meta_header);
			bits->bi_start = rgd->rd_ri.ri_bitbytes - bytes_left;
			bits->bi_len = bytes;
		}

		bytes_left -= bytes;
	}

	if(bytes_left){
		log_err( "fs_compute_bitstructs:  Too many blocks in rgrp to "
			"fit into available bitmap.\n");
		free(rgd->rd_bits);
		return -1;
	}

	if((rgd->rd_bits[length - 1].bi_start +
	    rgd->rd_bits[length - 1].bi_len) * GFS_NBBY != rgd->rd_ri.ri_data){
		log_err( "fs_compute_bitstructs:  # of blks in rgrp do not equal "
			"# of blks represented in bitmap.\n"
			"\tbi_start = %u\n"
			"\tbi_len   = %u\n"
			"\tGFS_NBBY = %u\n"
			"\tri_data  = %u\n",
			rgd->rd_bits[length - 1].bi_start,
			rgd->rd_bits[length - 1].bi_len,
			GFS_NBBY,
			rgd->rd_ri.ri_data);
		free(rgd->rd_bits);
		return -1;
	}


	if(!(rgd->rd_bh = (osi_buf_t **)malloc(length * sizeof(osi_buf_t *)))) {
		log_err("Unable to allocate osi_buf structure\n");
		stack;
		free(rgd->rd_bits);
		return -1;
	}
	if(!memset(rgd->rd_bh, 0, length * sizeof(osi_buf_t *))) {
		log_err("Unable to zero osi_buf structure\n");
		stack;
		free(rgd->rd_bits);
		return -1;
	}

	return 0;
}


/**
 * blk2rgrpd - Find resource group for a given data block number
 * @sdp: The GFS superblock
 * @n: The data block number
 *
 * Returns: Ths resource group, or NULL if not found
 */
struct fsck_rgrp *fs_blk2rgrpd(struct fsck_sb *sdp, uint64 blk)
{
	osi_list_t *tmp;
	struct fsck_rgrp *rgd = NULL;
	struct gfs_rindex *ri;

	for(tmp = sdp->rglist.next; tmp != &sdp->rglist; tmp = tmp->next){
		rgd = osi_list_entry(tmp, struct fsck_rgrp, rd_list);
		ri = &rgd->rd_ri;

		if (ri->ri_data1 <= blk && blk < ri->ri_data1 + ri->ri_data){
			break;
		} else
			rgd = NULL;
	}
	return rgd;
}

/**
 * fs_rgrp_read - read in the resource group information from disk.
 * @rgd - resource group structure
 * @repair_if_corrupted - If TRUE, rgrps found to be corrupt should be repaired
 *                 according to the index.  If FALSE, no corruption is fixed.
 */
int fs_rgrp_read(struct fsck_rgrp *rgd, int repair_if_corrupted)
{
	struct fsck_sb *sdp = rgd->rd_sbd;
	unsigned int x, length = rgd->rd_ri.ri_length;
	int error;

	if(rgd->rd_open_count){
		rgd->rd_open_count++;
		return 0;
	}

	for (x = 0; x < length; x++){
		if(rgd->rd_bh[x]){
			log_err("Programmer error!  Bitmaps are already present in rgrp.\n");
			exit(FSCK_ERROR);
		}
		error = get_and_read_buf(sdp, rgd->rd_ri.ri_addr + x,
								 &(rgd->rd_bh[x]), 0);
		if (error) {
		  	log_err("Unable to read rgrp from disk.\n"); 
		  	goto fail;
		}

		if(check_meta(rgd->rd_bh[x], (x) ? GFS_METATYPE_RB : GFS_METATYPE_RG)){
			log_err("Block #%"PRIu64" (0x%"PRIx64") (%d of %d) is neither"
					" GFS_METATYPE_RB nor GFS_METATYPE_RG.\n",
					BH_BLKNO(rgd->rd_bh[x]), BH_BLKNO(rgd->rd_bh[x]),
					(int)x+1, (int)length);
			if (repair_if_corrupted) {
				errors_found++;
				if (query(sdp, "Fix the RG? (y/n)")) {
					log_err("Attempting to repair the RG.\n");
					if (x) {
						struct gfs_meta_header mh;

						memset(&mh, 0, sizeof(mh));
						mh.mh_magic = GFS_MAGIC;
						mh.mh_type = GFS_METATYPE_RB;
						mh.mh_format = GFS_FORMAT_RB;
						gfs_meta_header_out(&mh,
								    BH_DATA(rgd->rd_bh[x]));
					} else {
						memset(&rgd->rd_rg, 0,
						       sizeof(struct gfs_rgrp));
						rgd->rd_rg.rg_header.mh_magic =
							GFS_MAGIC;
						rgd->rd_rg.rg_header.mh_type =
							GFS_METATYPE_RG;
						rgd->rd_rg.rg_header.mh_format =
							GFS_FORMAT_RG;
						rgd->rd_rg.rg_free =
							rgd->rd_ri.ri_data;
						gfs_rgrp_out(&rgd->rd_rg,
							     BH_DATA(rgd->rd_bh[x]));
					}
					write_buf(sdp, rgd->rd_bh[x], BW_WAIT);
					errors_corrected++;
				}
			}
			else {
				error = -1;
				goto fail;
			}
		}
	}

	gfs_rgrp_in(&rgd->rd_rg, BH_DATA(rgd->rd_bh[0]));
	rgd->rd_open_count = 1;

	return 0;

 fail:
	for (x = 0; x < length; x++){
		if (rgd->rd_bh[x]) {
			relse_buf(sdp, rgd->rd_bh[x]);
			rgd->rd_bh[x] = NULL;
		}
	}

	log_err("Resource group or index is corrupted.\n");
	return error;
}

void fs_rgrp_relse(struct fsck_rgrp *rgd)
{
	int x, length = rgd->rd_ri.ri_length;

	rgd->rd_open_count--;
	if(rgd->rd_open_count){
		;
	} else {
		for (x = 0; x < length; x++){
			if (rgd->rd_bh[x]) {
				relse_buf(rgd->rd_sbd, rgd->rd_bh[x]);
				rgd->rd_bh[x] = NULL;
			}
		}
	}
}

#if 0 /* no one calls this, so don't waste memory for it: */
/**
 * rgrp_verify - Verify that a resource group is consistent
 * @sdp: the filesystem
 * @rgd: the rgrp
 *
 * Returns: 0 if ok, -1 on error
 */
int fs_rgrp_verify(struct fsck_rgrp *rgd)
{
	fs_bitmap_t *bits = NULL;
	uint32 length = rgd->rd_ri.ri_length;
	uint32 count[4], tmp;
	int buf, x;

	for (x = 0; x < 4; x++){
		count[x] = 0;

		for (buf = 0; buf < length; buf++){
			bits = &rgd->rd_bits[buf];
			count[x] += fs_bitcount(BH_DATA(rgd->rd_bh[buf]) + bits->bi_offset,
						bits->bi_len, x);
		}
	}

	if(count[0] != rgd->rd_rg.rg_free){
		log_err("free data mismatch:  %u != %u\n",
			count[0], rgd->rd_rg.rg_free);
		return -1;
	}

	tmp = rgd->rd_ri.ri_data -
		(rgd->rd_rg.rg_usedmeta + rgd->rd_rg.rg_freemeta) -
		(rgd->rd_rg.rg_useddi + rgd->rd_rg.rg_freedi) -
		rgd->rd_rg.rg_free;

	if(count[1] != tmp){
		log_err("used data mismatch:  %u != %u\n",
			count[1], tmp);
		return -1;
	}
	if(count[2] != rgd->rd_rg.rg_freemeta){
		log_err("free metadata mismatch:  %u != %u\n",
			count[2], rgd->rd_rg.rg_freemeta);
		return -1;
	}

	tmp = rgd->rd_rg.rg_usedmeta +
		(rgd->rd_rg.rg_useddi + rgd->rd_rg.rg_freedi);

	if(count[3] != tmp){
		log_err("used metadata mismatch:  %u != %u\n",
			count[3], tmp);
		return -1;
	}
	return 0;
}
#endif

/**
 * fs_rgrp_recount - adjust block tracking numbers
 * rgd: resource group
 *
 * The resource groups keep track of how many free blocks, used blocks,
 * etc there are.  This function readjusts those numbers based on the
 * current state of the bitmap.
 *
 * Returns: 0 on success, -1 on failure
 */
int fs_rgrp_recount(struct fsck_rgrp *rgd){
	int i,j;
	fs_bitmap_t *bits = NULL;
	uint32 length = rgd->rd_ri.ri_length;
	uint32 count[4], tmp;

	for(i=0; i < 4; i++){
		count[i] = 0;
		for(j = 0; j < length; j++){
			bits = &rgd->rd_bits[j];
			count[i] += fs_bitcount((unsigned char *)
						BH_DATA(rgd->rd_bh[j]) +
						bits->bi_offset,
						bits->bi_len, i);
		}
	}
	if(count[0] != rgd->rd_rg.rg_free){
		log_warn("\tAdjusting free block count (%u -> %u).\n",
			rgd->rd_rg.rg_free, count[0]);
		rgd->rd_rg.rg_free = count[0];
	}
	if(count[2] != rgd->rd_rg.rg_freemeta){
		log_warn("\tAdjusting freemeta block count (%u -> %u).\n",
		       rgd->rd_rg.rg_freemeta, count[2]);
		rgd->rd_rg.rg_freemeta = count[2];
	}
	tmp = rgd->rd_rg.rg_usedmeta +
		(rgd->rd_rg.rg_useddi + rgd->rd_rg.rg_freedi);

	if(count[3] != tmp){
		int first = 1;
		struct fsck_sb *sdp = rgd->rd_sbd;
		uint32 useddi = 0;
		uint32 freedi = 0;
		uint64 block;
		struct fsck_inode *ip;

		while (1){  /* count the used dinodes */
			if(next_rg_metatype(rgd, &block,
					    GFS_METATYPE_DI, first)){
				break;
			}
			first = 0;
			if(load_inode(sdp, block, &ip)) {
				stack;
				continue;
			}

			if (ip->i_di.di_flags & GFS_DIF_UNUSED){
				freedi++;
				continue;
			}
			free_inode(&ip);
			useddi++;
		}

		if(useddi != rgd->rd_rg.rg_useddi){
			log_warn("\tAdjusting used dinode block count (%u -> %u).\n",
				rgd->rd_rg.rg_useddi, useddi);
			rgd->rd_rg.rg_useddi = useddi;
		}
		if(freedi != rgd->rd_rg.rg_freedi){
			log_warn("\tAdjusting free dinode block count (%u -> %u).\n",
				rgd->rd_rg.rg_freedi, freedi);
			rgd->rd_rg.rg_freedi = freedi;
		}
		if(rgd->rd_rg.rg_usedmeta != count[3] - (freedi + useddi)){
			log_warn("\tAdjusting used meta block count (%u -> %u).\n",
				rgd->rd_rg.rg_usedmeta,
				(count[3] - (freedi + useddi)));
			rgd->rd_rg.rg_usedmeta = count[3] - (freedi + useddi);
		}
	}

	tmp = rgd->rd_ri.ri_data -
		(rgd->rd_rg.rg_usedmeta + rgd->rd_rg.rg_freemeta) -
		(rgd->rd_rg.rg_useddi + rgd->rd_rg.rg_freedi) -
		rgd->rd_rg.rg_free;

	if(count[1] != tmp){
		log_err("Could not reconcile rgrp block counts.\n");
		return -1;
	}
	return 0;
}



/**
 * clump_alloc - Allocate a clump of metadata
 * @rgd: the resource group descriptor
 * @goal: the goal block in the RG
 *
 * Returns: 0 on success, -1 on failure
 */
int clump_alloc(struct fsck_rgrp *rgd, uint32 goal)
{
	struct fsck_sb *sdp = rgd->rd_sbd;
	struct gfs_meta_header mh;
	osi_buf_t *bh[GFS_META_CLUMP] = {0};
	uint32 block;
	int i,j;
	int error = 0;

	memset(&mh, 0, sizeof(struct gfs_meta_header));
	mh.mh_magic = GFS_MAGIC;
	mh.mh_type = GFS_METATYPE_NONE;

	if(rgd->rd_rg.rg_free < GFS_META_CLUMP){
		log_debug(" Not enough free blocks in rgrp.\n");
		return -1;
	}

	for (i = 0; i < GFS_META_CLUMP; i++){
		block = fs_blkalloc_internal(rgd, goal,
					     GFS_BLKST_FREE,
					     GFS_BLKST_FREEMETA, TRUE);
		log_debug("Got block %u\n", block);

		if(block == BFITNOENT) {
			log_err("Unable to get enough blocks\n");
			goto fail;
		}
		block += rgd->rd_ri.ri_data1;
		block_set(rgd->rd_sbd->bl, block, meta_free);
		if(get_buf(sdp, block, &(bh[i]))){
			log_err("Unable to allocate new buffer.\n");
			goto fail;
		}
		gfs_meta_header_out(&mh, BH_DATA(bh[i]));

		goal = block;
	}

	log_debug("64 Meta blocks (%"PRIu64" - %"PRIu64"), allocated in rgrp 0x%lx\n",
		(rgd->rd_ri.ri_data1 + block)-63,
		(rgd->rd_ri.ri_data1 + block),
		(unsigned long)rgd);
	for (j = 0; j < GFS_META_CLUMP; j++){

		error = write_buf(sdp, bh[j], BW_WAIT);
		if (error){
			log_err("Unable to write allocated metablock to disk.\n");
			goto fail;
		}
	}

	if(rgd->rd_rg.rg_free < GFS_META_CLUMP){
		log_err("More blocks were allocated from rgrp "
			"than are available.\n");
		goto fail;
	}
	rgd->rd_rg.rg_free -= GFS_META_CLUMP;
	rgd->rd_rg.rg_freemeta += GFS_META_CLUMP;

	for (i = 0; i < GFS_META_CLUMP; i++)
		relse_buf(sdp, bh[i]);

	return 0;

 fail:
	log_debug("clump_alloc failing...\n");
	for(--i; i >=0; i--){
		fs_set_bitmap(sdp, BH_BLKNO(bh[i]), GFS_BLKST_FREE);
		/*relse_buf(sdp, bh[i]);*/
	}
	return -1;
}


/**
 * fs_blkalloc - Allocate a data block
 * @ip: the inode to allocate the data block for
 * @block: the block allocated
 *
 * Returns: 0 on success, -1 on failure
 */
int fs_blkalloc(struct fsck_inode *ip, uint64 *block)
{
	osi_list_t *tmp;
	struct fsck_sb *sdp = ip->i_sbd;
	struct fsck_rgrp *rgd;
	uint32 goal;
	int same;

	for(tmp = sdp->rglist.next; tmp != &sdp->rglist; tmp = tmp->next){
		rgd = osi_list_entry(tmp, struct fsck_rgrp, rd_list);

		if(!rgd){
			log_err( "fs_blkalloc:  Bad rgrp list!\n");
			return -1;
		}

		if(fs_rgrp_read(rgd, FALSE)){
			log_err( "fs_blkalloc:  Unable to read rgrp.\n");
			return -1;
		}

		if(!rgd->rd_rg.rg_free){
			fs_rgrp_relse(rgd);
			continue;
		}

		same = (rgd->rd_ri.ri_addr == ip->i_di.di_goal_rgrp);
		goal = (same) ? ip->i_di.di_goal_dblk : 0;

		*block = fs_blkalloc_internal(rgd, goal,
					      GFS_BLKST_FREE,
					      GFS_BLKST_USED, TRUE);

		log_debug("Got block %"PRIu64"\n", *block);
		if(*block == BFITNOENT) {
			fs_rgrp_relse(rgd);
			continue;
		}
		if (!same){
			ip->i_di.di_goal_rgrp = rgd->rd_ri.ri_addr;
			ip->i_di.di_goal_mblk = 0;
		}

		*block += rgd->rd_ri.ri_data1;
		ip->i_di.di_goal_dblk = *block;

		rgd->rd_rg.rg_free--;

		gfs_rgrp_out(&rgd->rd_rg, BH_DATA(rgd->rd_bh[0]));
		if(write_buf(sdp, rgd->rd_bh[0], 0)){
			log_err( "Unable to write out rgrp block #%"
				PRIu64".\n",
				BH_BLKNO(rgd->rd_bh[0]));
			fs_rgrp_relse(rgd);
			return -1;
		}
		fs_rgrp_relse(rgd);
		return 0;
	}

	return 1;
}


/**
 * fs_metaalloc - Allocate a metadata block to a file
 * @ip:  the file
 * @block: the block allocated
 *
 * Returns: 0 on success, -1 on failure
 */
int fs_metaalloc(struct fsck_inode *ip, uint64 *block)
{
	osi_list_t *tmp;
	struct fsck_sb *sdp = ip->i_sbd;
	struct fsck_rgrp *rgd;
	uint32 goal;
	int same;
	int error = 0;

	/* ATTENTION -- maybe we should try to allocate from goal rgrp first */
	for(tmp = sdp->rglist.next; tmp != &sdp->rglist; tmp = tmp->next){
		rgd = osi_list_entry(tmp, struct fsck_rgrp, rd_list);

		if(!rgd){
			log_err( "fs_metaalloc:  Bad rgrp list!\n");
			return -1;
		}

		if(fs_rgrp_read(rgd, FALSE)){
			log_err( "fs_metaalloc:  Unable to read rgrp.\n");
			return -1;
		}

		same = (rgd->rd_ri.ri_addr == ip->i_di.di_goal_rgrp);
		goal = (same) ? ip->i_di.di_goal_mblk : 0;

		if (!rgd->rd_rg.rg_freemeta){
			error = clump_alloc(rgd, goal);
			if (error){
				fs_rgrp_relse(rgd);
				continue;
			}
		}


		if(!rgd->rd_rg.rg_freemeta){
			fs_rgrp_relse(rgd);
			continue;
		}
		*block = fs_blkalloc_internal(rgd, goal,
					      GFS_BLKST_FREEMETA,
					      GFS_BLKST_USEDMETA, TRUE);
		log_debug("Got block %"PRIu64"\n", *block);
		if(*block == BFITNOENT) {
			fs_rgrp_relse(rgd);
			continue;
		}
		if (!same){
			ip->i_di.di_goal_rgrp = rgd->rd_ri.ri_addr;
			ip->i_di.di_goal_dblk = 0;
		}
		*block += rgd->rd_ri.ri_data1;
		ip->i_di.di_goal_mblk = *block;

		rgd->rd_rg.rg_freemeta--;
		rgd->rd_rg.rg_usedmeta++;

		gfs_rgrp_out(&rgd->rd_rg, BH_DATA(rgd->rd_bh[0]));
		write_buf(sdp, rgd->rd_bh[0], 0);
		fs_rgrp_relse(rgd);
		/* if we made it this far, then we are ok */
		return 0;
	}

	return -1;
}