diff options
author | rwatson <rwatson@FreeBSD.org> | 2003-06-04 04:00:26 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2003-06-04 04:00:26 +0000 |
commit | 9362735e45e4c19648715730e5df7bd8a2794e60 (patch) | |
tree | 6d145ab0a739e97078647a0ab36f7a7ee2b61be6 /lib | |
parent | df2db1a4c277c2f4250ed3fccc2328a1dd2eded2 (diff) | |
download | FreeBSD-src-9362735e45e4c19648715730e5df7bd8a2794e60.zip FreeBSD-src-9362735e45e4c19648715730e5df7bd8a2794e60.tar.gz |
Document the new explicit listing API for extended attributes; note
that the old API (passing "" as the attribute name to the _get_
interface) is now deprecated (and was probably a bad idea).
Pointed out by: Dominic Giampaolo <dbg@apple.com>
Obtained from: TrustedBSD Project
Sponsored by: DARPA, Network Associates Laboratories
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/sys/extattr_get_file.2 | 38 |
1 files changed, 32 insertions, 6 deletions
diff --git a/lib/libc/sys/extattr_get_file.2 b/lib/libc/sys/extattr_get_file.2 index 5c2f058..212a3e9 100644 --- a/lib/libc/sys/extattr_get_file.2 +++ b/lib/libc/sys/extattr_get_file.2 @@ -1,5 +1,6 @@ .\" .\" Copyright (c) 2001 Dima Dorfman <dima@unixfreak.org> +.\" Copyright (c) 2003 Robert Watson <rwatson@FreeBSD.org> .\" All rights reserved. .\" .\" Redistribution and use in source and binary forms, with or without @@ -32,12 +33,15 @@ .Nm extattr_get_fd , .Nm extattr_set_fd , .Nm extattr_delete_fd , +.Nm extattr_list_fd , .Nm extattr_get_file , .Nm extattr_set_file , .Nm extattr_delete_file +.Nm extattr_list_file , .Nm extattr_get_link , .Nm extattr_set_link , .Nm extattr_delete_link +.Nm extattr_list_link , .Nd system calls to manipulate VFS extended attributes .Sh LIBRARY .Lb libc @@ -52,23 +56,30 @@ .Ft int .Fn extattr_delete_fd "int fd" "int attrnamespace" "const char *attrname" .Ft ssize_t +.Fn extattr_list_fd "int fd" "int attrnamespace" "void *data" "size_t nbytes" +.Ft ssize_t .Fn extattr_get_file "const char *path" "int attrnamespace" "const char *attrname" "void *data" "size_t nbytes" .Ft int .Fn extattr_set_file "const char *path" "int attrnamespace" "const char *attrname" "const void *data" "size_t nbytes" .Ft int .Fn extattr_delete_file "const char *path" "int attrnamespace" "const char *attrname" .Ft ssize_t +.Fn extattr_list_file "const char *path" "int attrnamespace" "void *data" "size_t nbytes" +.Ft ssize_t .Fn extattr_get_link "const char *path" "int attrnamespace" "const char *attrname" "void *data" "size_t nbytes" .Ft int .Fn extattr_set_link "const char *path" "int attrnamespace" "const char *attrname" "const void *data" "size_t nbytes" .Ft int .Fn extattr_delete_link "const char *path" "int attrnamespace" "const char *attrname" +.Ft ssize_t +.Fn extattr_list_link "const char *path" "int attrnamespace" "void *data" "size_t nbytes" .Sh DESCRIPTION Named extended attributes are meta-data associated with vnodes representing files and directories. They exist as .Qq Li name=value pairs within a set of namespaces. +.Pp The .Fn extattr_get_file system call retrieves the value of the specified extended attribute into @@ -85,18 +96,23 @@ The .Fn extattr_delete_file system call deletes the extended attribute specified. The -.Fn extattr_get_file +.Fn extattr_list_file +returns a list of attributes present in the requested namespace, separated +by ASCII 0 (nul) characters. +The +.Fn extattr_get_file , and -.Fn extattr_set_file +.Fn extattr_list_file calls consume the .Fa data and .Fa nbytes arguments in the style of -.Xr read 2 -and -.Xr write 2 , -respectively. +.Xr read 2 ; +.Fn extattr_set_file +consumes these arguments in the style of +.Xr write 2. +.Pp If .Fa data is @@ -238,3 +254,13 @@ Project, and introduced in .Fx 5.0 . It was developed to support security extensions requiring additional labels to be associated with each file or directory. +.Sh BUGS +In earlier versions of this API, passing an empty string for the +attribute name to +.Fn extattr_get_fd , +.Fn extattr_get_file , +or +.Fn extattr_get_link +would return the list of attributes defined for the target object. +This interface has been deprecated in preference to using the explicit +list API, and should not be used. |