1 /* $NetBSD: getextattr.c,v 1.2 2005/06/02 01:43:16 lukem Exp $ */
4 * Copyright (c) 2002, 2003 Networks Associates Technology, Inc.
5 * Copyright (c) 2002 Poul-Henning Kamp.
6 * Copyright (c) 1999, 2000, 2001, 2002 Robert N. M. Watson
9 * This software was developed for the FreeBSD Project by Poul-Henning
10 * Kamp and Network Associates Laboratories, the Security Research Division
11 * of Network Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035
12 * ("CBOSS"), as part of the DARPA CHATS research program
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions
17 * 1. Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
19 * 2. Redistributions in binary form must reproduce the above copyright
20 * notice, this list of conditions and the following disclaimer in the
21 * documentation and/or other materials provided with the distribution.
22 * 3. The names of the authors may not be used to endorse or promote
23 * products derived from this software without specific prior written
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * FreeBSD: src/usr.sbin/extattr/rmextattr.c,v 1.6 2003/06/05 04:30:00 rwatson Exp
41 #include <sys/types.h>
43 #include <sys/extattr.h>
55 static enum { EADUNNO
, EAGET
, EASET
, EARM
, EALS
} what
= EADUNNO
;
63 fprintf(stderr
, "usage: %s [-fhqsx] "
64 "attrnamespace attrname filename ...\n", getprogname());
68 fprintf(stderr
, "usage: %s [-fhnq] "
69 "attrnamespace attrname attrvalue filename ...\n",
74 fprintf(stderr
, "usage: %s [-fhq] "
75 "attrnamespace attrname filename ...\n", getprogname());
79 fprintf(stderr
, "usage: %s [-fhq] "
80 "attrnamespace filename ...\n", getprogname());
86 "usage: (getextattr|lsextattr|rmextattr|setextattr)\n");
92 mkbuf(char **buf
, int *oldlen
, int newlen
)
95 if (*oldlen
>= newlen
)
99 *buf
= malloc(newlen
);
107 main(int argc
, char *argv
[])
112 const char *options
, *attrname
;
113 int buflen
, visbuflen
, ch
, error
, i
, arg_counter
, attrnamespace
,
117 int flag_nofollow
= 0;
125 visbuflen
= buflen
= 0;
129 if (strcmp(p
, "getextattr") == 0) {
133 } else if (strcmp(p
, "setextattr") == 0) {
137 } else if (strcmp(p
, "rmextattr") == 0) {
141 } else if (strcmp(p
, "lsextattr") == 0) {
148 while ((ch
= getopt(argc
, argv
, options
)) != -1) {
179 error
= extattr_string_to_namespace(argv
[0], &attrnamespace
);
191 mkbuf(&buf
, &buflen
, strlen(argv
[0]) + 1);
192 strcpy(buf
, argv
[0]); /* safe */
196 for (arg_counter
= 0; arg_counter
< argc
; arg_counter
++) {
200 error
= extattr_delete_link(argv
[arg_counter
],
201 attrnamespace
, attrname
);
203 error
= extattr_delete_file(argv
[arg_counter
],
204 attrnamespace
, attrname
);
210 error
= extattr_set_link(argv
[arg_counter
],
211 attrnamespace
, attrname
, buf
,
212 strlen(buf
) + flag_null
);
214 error
= extattr_set_file(argv
[arg_counter
],
215 attrnamespace
, attrname
, buf
,
216 strlen(buf
) + flag_null
);
222 error
= extattr_list_link(argv
[arg_counter
],
223 attrnamespace
, NULL
, 0);
225 error
= extattr_list_file(argv
[arg_counter
],
226 attrnamespace
, NULL
, 0);
229 mkbuf(&buf
, &buflen
, error
);
231 error
= extattr_list_link(argv
[arg_counter
],
232 attrnamespace
, buf
, buflen
);
234 error
= extattr_list_file(argv
[arg_counter
],
235 attrnamespace
, buf
, buflen
);
239 printf("%s\t", argv
[arg_counter
]);
240 for (i
= 0; i
< error
; i
+= buf
[i
] + 1)
241 printf("%s%*.*s", i
? "\t" : "",
242 buf
[i
], buf
[i
], buf
+ i
+ 1);
247 error
= extattr_get_link(argv
[arg_counter
],
248 attrnamespace
, attrname
, NULL
, 0);
250 error
= extattr_get_file(argv
[arg_counter
],
251 attrnamespace
, attrname
, NULL
, 0);
254 mkbuf(&buf
, &buflen
, error
);
256 error
= extattr_get_link(argv
[arg_counter
],
257 attrnamespace
, attrname
, buf
, buflen
);
259 error
= extattr_get_file(argv
[arg_counter
],
260 attrnamespace
, attrname
, buf
, buflen
);
264 printf("%s\t", argv
[arg_counter
]);
266 mkbuf(&visbuf
, &visbuflen
, error
* 4 + 1);
267 strvisx(visbuf
, buf
, error
,
268 VIS_SAFE
| VIS_WHITE
);
269 printf("\"%s\"\n", visbuf
);
271 } else if (flag_hex
) {
272 for (i
= 0; i
< error
; i
++)
273 printf("%s%02x", i
? " " : "",
278 fwrite(buf
, buflen
, 1, stdout
);
286 warn("%s: failed", argv
[arg_counter
]);