getbsize.c revision 1.15
11.15Sagc/*	$NetBSD: getbsize.c,v 1.15 2003/08/07 16:42:48 agc Exp $	*/
21.6Scgd
31.1Smycroft/*-
41.6Scgd * Copyright (c) 1991, 1993
51.6Scgd *	The Regents of the University of California.  All rights reserved.
61.1Smycroft *
71.1Smycroft * Redistribution and use in source and binary forms, with or without
81.1Smycroft * modification, are permitted provided that the following conditions
91.1Smycroft * are met:
101.1Smycroft * 1. Redistributions of source code must retain the above copyright
111.1Smycroft *    notice, this list of conditions and the following disclaimer.
121.1Smycroft * 2. Redistributions in binary form must reproduce the above copyright
131.1Smycroft *    notice, this list of conditions and the following disclaimer in the
141.1Smycroft *    documentation and/or other materials provided with the distribution.
151.15Sagc * 3. Neither the name of the University nor the names of its contributors
161.1Smycroft *    may be used to endorse or promote products derived from this software
171.1Smycroft *    without specific prior written permission.
181.1Smycroft *
191.1Smycroft * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
201.1Smycroft * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
211.1Smycroft * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
221.1Smycroft * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
231.1Smycroft * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
241.1Smycroft * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
251.1Smycroft * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
261.1Smycroft * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
271.1Smycroft * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
281.1Smycroft * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
291.1Smycroft * SUCH DAMAGE.
301.1Smycroft */
311.1Smycroft
321.9Schristos#include <sys/cdefs.h>
331.7Sjtc#if defined(LIBC_SCCS) && !defined(lint)
341.6Scgd#if 0
351.6Scgdstatic char sccsid[] = "@(#)getbsize.c	8.1 (Berkeley) 6/4/93";
361.6Scgd#else
371.15Sagc__RCSID("$NetBSD: getbsize.c,v 1.15 2003/08/07 16:42:48 agc Exp $");
381.6Scgd#endif
391.1Smycroft#endif /* not lint */
401.1Smycroft
411.9Schristos#include "namespace.h"
421.11Slukem
431.11Slukem#include <assert.h>
441.2Scgd#include <err.h>
451.1Smycroft#include <stdio.h>
461.1Smycroft#include <stdlib.h>
471.2Scgd#include <string.h>
481.10Sjtc
491.10Sjtc#ifdef __weak_alias
501.13Smycroft__weak_alias(getbsize,_getbsize)
511.10Sjtc#endif
521.1Smycroft
531.1Smycroftchar *
541.3Scgdgetbsize(headerlenp, blocksizep)
551.1Smycroft	int *headerlenp;
561.1Smycroft	long *blocksizep;
571.1Smycroft{
581.1Smycroft	static char header[20];
591.1Smycroft	long n, max, mul, blocksize;
601.1Smycroft	char *ep, *p, *form;
611.11Slukem
621.1Smycroft#define	KB	(1024L)
631.1Smycroft#define	MB	(1024L * 1024L)
641.1Smycroft#define	GB	(1024L * 1024L * 1024L)
651.1Smycroft#define	MAXB	GB		/* No tera, peta, nor exa. */
661.1Smycroft	form = "";
671.3Scgd	if ((p = getenv("BLOCKSIZE")) != NULL && *p != '\0') {
681.1Smycroft		if ((n = strtol(p, &ep, 10)) < 0)
691.1Smycroft			goto underflow;
701.1Smycroft		if (n == 0)
711.1Smycroft			n = 1;
721.1Smycroft		if (*ep && ep[1])
731.1Smycroft			goto fmterr;
741.1Smycroft		switch (*ep) {
751.1Smycroft		case 'G': case 'g':
761.1Smycroft			form = "G";
771.1Smycroft			max = MAXB / GB;
781.1Smycroft			mul = GB;
791.1Smycroft			break;
801.1Smycroft		case 'K': case 'k':
811.1Smycroft			form = "K";
821.1Smycroft			max = MAXB / KB;
831.1Smycroft			mul = KB;
841.1Smycroft			break;
851.1Smycroft		case 'M': case 'm':
861.1Smycroft			form = "M";
871.1Smycroft			max = MAXB / MB;
881.1Smycroft			mul = MB;
891.1Smycroft			break;
901.1Smycroft		case '\0':
911.1Smycroft			max = MAXB;
921.1Smycroft			mul = 1;
931.1Smycroft			break;
941.1Smycroft		default:
951.9Schristosfmterr:			warnx("%s: unknown blocksize", p);
961.1Smycroft			n = 512;
971.1Smycroft			mul = 1;
981.9Schristos			max = 0;
991.1Smycroft			break;
1001.1Smycroft		}
1011.1Smycroft		if (n > max) {
1021.9Schristos			warnx("maximum blocksize is %ldG", MAXB / GB);
1031.1Smycroft			n = max;
1041.1Smycroft		}
1051.1Smycroft		if ((blocksize = n * mul) < 512) {
1061.9Schristosunderflow:		warnx("%s: minimum blocksize is 512", p);
1071.1Smycroft			form = "";
1081.1Smycroft			blocksize = n = 512;
1091.1Smycroft		}
1101.1Smycroft	} else
1111.1Smycroft		blocksize = n = 512;
1121.1Smycroft
1131.14Ssimonb	if (headerlenp)
1141.14Ssimonb		*headerlenp =
1151.14Ssimonb		    snprintf(header, sizeof(header), "%ld%s-blocks", n, form);
1161.14Ssimonb	if (blocksizep)
1171.14Ssimonb		*blocksizep = blocksize;
1181.1Smycroft	return (header);
1191.1Smycroft}
120