Path: blob/main/sys/contrib/openzfs/tests/zfs-tests/cmd/file/file_check.c
48677 views
// SPDX-License-Identifier: CDDL-1.01/*2* CDDL HEADER START3*4* The contents of this file are subject to the terms of the5* Common Development and Distribution License (the "License").6* You may not use this file except in compliance with the License.7*8* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE9* or https://opensource.org/licenses/CDDL-1.0.10* See the License for the specific language governing permissions11* and limitations under the License.12*13* When distributing Covered Code, include this CDDL HEADER in each14* file and include the License file at usr/src/OPENSOLARIS.LICENSE.15* If applicable, add the following below this CDDL HEADER, with the16* fields enclosed by brackets "[]" replaced with your own identifying17* information: Portions Copyright [yyyy] [name of copyright owner]18*19* CDDL HEADER END20*/2122/*23* Copyright 2007 Sun Microsystems, Inc. All rights reserved.24* Use is subject to license terms.25*/2627#include "file_common.h"2829static unsigned char bigbuffer[BIGBUFFERSIZE];3031/*32* Given a filename, check that the file consists entirely33* of a particular pattern. If the pattern is not specified a34* default will be used. For default values see file_common.h35*/36int37main(int argc, char **argv)38{39int bigfd;40long i, n;41unsigned char fillchar = DATA;42int bigbuffersize = BIGBUFFERSIZE;4344/*45* Validate arguments46*/47if (argc < 2) {48(void) printf("Usage: %s filename [pattern]\n",49argv[0]);50exit(1);51}5253if (argv[2]) {54fillchar = atoi(argv[2]);55}5657/*58* Read the file contents and check every character59* against the supplied pattern. Abort if the60* pattern check fails.61*/62if ((bigfd = open(argv[1], O_RDONLY)) == -1) {63(void) printf("open %s failed %d\n", argv[1], errno);64exit(1);65}6667do {68if ((n = read(bigfd, &bigbuffer, bigbuffersize)) == -1) {69(void) printf("read failed (%ld), %d\n", n, errno);70exit(errno);71}7273for (i = 0; i < n; i++) {74if (bigbuffer[i] != fillchar) {75(void) printf("error %s: 0x%x != 0x%x)\n",76argv[1], bigbuffer[i], fillchar);77exit(1);78}79}80} while (n == bigbuffersize);8182return (0);83}848586