xref: /freebsd/include/ar.h (revision 5a1d14419a5b620430949a46cb6ee63148a43cb9)
159deaec5SRodney W. Grimes /*-
2*2321c474SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
3*2321c474SPedro F. Giffuni  *
459deaec5SRodney W. Grimes  * Copyright (c) 1991, 1993
559deaec5SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
659deaec5SRodney W. Grimes  * (c) UNIX System Laboratories, Inc.
759deaec5SRodney W. Grimes  * All or some portions of this file are derived from material licensed
859deaec5SRodney W. Grimes  * to the University of California by American Telephone and Telegraph
959deaec5SRodney W. Grimes  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
1059deaec5SRodney W. Grimes  * the permission of UNIX System Laboratories, Inc.
1159deaec5SRodney W. Grimes  *
1259deaec5SRodney W. Grimes  * This code is derived from software contributed to Berkeley by
1359deaec5SRodney W. Grimes  * Hugh Smith at The University of Guelph.
1459deaec5SRodney W. Grimes  *
1559deaec5SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
1659deaec5SRodney W. Grimes  * modification, are permitted provided that the following conditions
1759deaec5SRodney W. Grimes  * are met:
1859deaec5SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
1959deaec5SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
2059deaec5SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
2159deaec5SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
2259deaec5SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
23f2556687SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
2459deaec5SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
2559deaec5SRodney W. Grimes  *    without specific prior written permission.
2659deaec5SRodney W. Grimes  *
2759deaec5SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2859deaec5SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2959deaec5SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
3059deaec5SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
3159deaec5SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3259deaec5SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3359deaec5SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3459deaec5SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3559deaec5SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3659deaec5SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3759deaec5SRodney W. Grimes  * SUCH DAMAGE.
3859deaec5SRodney W. Grimes  */
3959deaec5SRodney W. Grimes 
4059deaec5SRodney W. Grimes #ifndef _AR_H_
4159deaec5SRodney W. Grimes #define	_AR_H_
4259deaec5SRodney W. Grimes 
439e1ea8f2SJoseph Koshy #include <sys/cdefs.h>
449e1ea8f2SJoseph Koshy 
4559deaec5SRodney W. Grimes /* Pre-4BSD archives had these magic numbers in them. */
4659deaec5SRodney W. Grimes #define	OARMAG1	0177555
4759deaec5SRodney W. Grimes #define	OARMAG2	0177545
4859deaec5SRodney W. Grimes 
4959deaec5SRodney W. Grimes #define	ARMAG		"!<arch>\n"	/* ar "magic number" */
5059deaec5SRodney W. Grimes #define	SARMAG		8		/* strlen(ARMAG); */
5159deaec5SRodney W. Grimes 
5259deaec5SRodney W. Grimes #define	AR_EFMT1	"#1/"		/* extended format #1 */
5359deaec5SRodney W. Grimes 
5459deaec5SRodney W. Grimes struct ar_hdr {
5559deaec5SRodney W. Grimes 	char ar_name[16];		/* name */
5659deaec5SRodney W. Grimes 	char ar_date[12];		/* modification time */
5759deaec5SRodney W. Grimes 	char ar_uid[6];			/* user id */
5859deaec5SRodney W. Grimes 	char ar_gid[6];			/* group id */
5959deaec5SRodney W. Grimes 	char ar_mode[8];		/* octal file permissions */
6059deaec5SRodney W. Grimes 	char ar_size[10];		/* size in bytes */
6159deaec5SRodney W. Grimes #define	ARFMAG	"`\n"
6259deaec5SRodney W. Grimes 	char ar_fmag[2];		/* consistency check */
639e1ea8f2SJoseph Koshy } __packed;
6459deaec5SRodney W. Grimes 
6559deaec5SRodney W. Grimes #endif /* !_AR_H_ */
66