nis_tables, nis_list, nis_add_entry, nis_remove_entry, nis_modify_entry, nis_first_entry, nis_next_entry - NIS+ table functions
cc [ flag ... ] file ... -lnsl [ library ... ] #include <rpcsvc/nis.h> nis_result *nis_list(nis_name name, uint_tflags, int (*callback)(nis_name table_name,nis_object *object, void *userdata), void *userdata);
nis_result *nis_add_entry(nis_name table_name, nis_object *object, uint_t flags);
nis_result *nis_remove_entry(nis_name name, nis_object *object, uint_t flags);
nis_result *nis_modify_entry(nis_name name, nis_object *object, uint_t flags);
nis_result *nis_first_entry(nis_name table_name);
nis_result *nis_next_entry(nis_name table_name, netobj *cookie);
void nis_freeresult(nis_result *result);
Use the NIS+ table functions to search and modify NIS+ tables. nis_list() is used to search a table in the NIS+ namespace. nis_first_entry() and nis_next_entry() are used to enumerate a table one entry at a time. nis_add_entry(), nis_remove_entry(), and nis_modify_entry() are used to change the information stored in a table. nis_freeresult() is used to free the memory associated with the nis_result structure.
Entries within a table are named by NIS+ indexed names. An indexed name is a compound name that is composed of a search criteria and a simple NIS+ name that identifies a table object. A search criteria is a series of column names and their associated values enclosed in bracket '[]' characters. Indexed names have the following form:
[ colname=value, ... ], tablename
The list function, nis_list(), takes an indexed name as the value for the name parameter. Here, the tablename should be a fully qualified NIS+ name unless the EXPAND_NAME flag (described below) is set. The second parameter, flags, defines how the function will respond to various conditions. The value for this parameter is created by logically ORing together one or more flags from the following list.
FOLLOW_LINKS
FOLLOW_PATH
HARD_LOOKUP
ALL_RESULTS
NO_CACHE
MASTER_ONLY
EXPAND_NAME
RETURN_RESULT
The third parameter to nis_list(), callback, is an optional pointer to a function that will process the ENTRY type objects that are returned from the search. If this pointer is NULL, then all entries that match the search criteria are returned in the nis_result structure, otherwise this function will be called once for each entry returned. When called, this function should return 0 when additional objects are desired and 1 when it no longer wishes to see any more objects. The fourth parameter, userdata, is simply passed to callback function along with the returned entry object. The client can use this pointer to pass state information or other relevant data that the callback function might need to process the entries.
The nis_list() function is not MT-Safe with callbacks.
nis_add_entry() will add the NIS+ object to the NIS+ table_name. The flags parameter is used to specify the failure semantics for the add operation. The default (flags equal 0) is to fail if the entry being added already exists in the table. The ADD_OVERWRITE flag may be used to specify that existing object is to be overwritten if it exists, (a modify operation) or added if it does not exist. With the ADD_OVERWRITE flag, this function will fail with the error NIS_PERMISSION if the existing object does not allow modify privileges to the client.
If the flag RETURN_RESULT has been specified, the server will return a copy of the resulting object if the operation was successful.
nis_remove_entry() removes the identified entry from the table or a set of entries identified by table_name. If the parameter object is non-null, it is presumed to point to a cached copy of the entry. When the removal is attempted, and the object that would be removed is not the same as the cached object pointed to by object then the operation will fail with an NIS_NOTSAMEOBJ error. If an object is passed with this function, the search criteria in name is optional as it can be constructed from the values within the entry. However, if no object is present, the search criteria must be included in the name parameter. If the flags variable is null, and the search criteria does not uniquely identify an entry, the NIS_NOTUNIQUE error is returned and the operation is aborted. If the flag parameter REM_MULTIPLE is passed, and if remove permission is allowed for each of these objects, then all objects that match the search criteria will be removed. Note that a null search criteria and the REM_MULTIPLE flag will remove all entries in a table.
nis_modify_entry() modifies an object identified by name. The parameter object should point to an entry with the EN_MODIFIED flag set in each column that contains new information.
The owner, group, and access rights of an entry are modified by placing the modified information into the respective fields of the parameter, object: zo_owner, zo_group, and zo_access.
These columns will replace their counterparts in the entry that is stored in the table. The entry passed must have the same number of columns, same type, and valid data in the modified columns for this operation to succeed.
If the flags parameter contains the flag MOD_SAMEOBJ then the object pointed to by object is assumed to be a cached copy of the original object. If the OID of the object passed is different than the OID of the object the server fetches, then the operation fails with the NIS_NOTSAMEOBJ error. This can be used to implement a simple read-modify-write protocol which will fail if the object is modified before the client can write the object back.
If the flag RETURN_RESULT has been specified, the server will return a copy of the resulting object if the operation was successful.
nis_first_entry() fetches entries from a table one at a time. This mode of operation is extremely inefficient and callbacks should be used instead wherever possible. The table containing the entries of interest is identified by name. If a search criteria is present in name it is ignored. The value of cookie within the nis_result structure must be copied by the caller into local storage and passed as an argument to nis_next_entry().
nis_next_entry() retrieves the "next" entry from a table specified by table_name. The order in which entries are returned is not guaranteed. Further, should an update occur in the table between client calls to nis_next_entry() there is no guarantee that an entry that is added or modified will be seen by the client. Should an entry be removed from the table that would have been the "next" entry returned, the error NIS_CHAINBROKEN is returned instead.
The path used when the flag FOLLOW_PATH is specified, is the one present in the first table searched. The path values in tables that are subsequently searched are ignored.
It is legal to call functions that would access the nameservice from within a list callback. However, calling a function that would itself use a callback, or calling nis_list() with a callback from within a list callback function is not currently supported.
There are currently no known methods for nis_first_entry() and nis_next_entry() to get their answers from only the master server.
The nis_list() function is not MT-Safe with callbacks. nis_list() callbacks are serialized. A call to nis_list() with a callback from within nis_list() will deadlock. nis_list() with a callback cannot be called from an rpc server. See rpc_svc_calls(3NSL). Otherwise, this function is MT-Safe.
These functions return a pointer to a structure of type nis_result:
struct nis_result { nis_error status; struct { uint_t objects_len; nis_object *objects_val; } objects; netobj cookie; uint32_t zticks; uint32_t dticks; uint32_t aticks; uint32_t cticks; };
The status member contains the error status of the the operation. A text message that describes the error can be obtained by calling the function nis_sperrno(). See nis_error(3NSL).
The objects structure contains two members. objects_val is an array of nis_object structures; objects_len is the number of cells in the array. These objects will be freed by a call to nis_freeresult(). See nis_names(3NSL). If you need to keep a copy of one or more objects, they can be copied with the function nis_clone_object() and freed with the function nis_destroy_object(). See nis_server(3NSL).
The various ticks contain details of where the time, in microseconds, was taken during a request. They can be used to tune one's data organization for faster access and to compare different database implementations.
zticks
dticks
aticks
cticks
Subtracting the value in dticks from the value in zticks will yield the time spent in the service code itself. Subtracting the sum of the values in zticks and aticks from the value in cticks will yield the time spent in the client library itself. Note: all of the tick times are measured in microseconds.
The client library can return a variety of error returns and diagnostics. The more salient ones are documented below.
NIS_BADATTRIBUTE
NIS_BADNAME
NIS_BADREQUEST
NIS_CACHEEXPIRED
NIS_CBERROR
NIS_CBRESULTS
NIS_FOREIGNNS
NIS_INVALIDOBJ
NIS_LINKNAMEERROR
NIS_MODFAIL
NIS_NAMEEXISTS
NIS_NAMEUNREACHABLE
NIS_NOCALLBACK
NIS_NOMEMORY
NIS_NOSUCHNAME
NIS_NOSUCHTABLE
NIS_NOT_ME
NIS_NOTFOUND
If the FOLLOW_PATH flag was set, this error indicates that none of the tables in the path contain entries that match the search criteria.
NIS_NOTMASTER
NIS_NOTSAMEOBJ
NIS_NOTSEARCHABLE
NIS_PARTIAL
NIS_RPCERROR
NIS_S_NOTFOUND
NIS_S_SUCCESS
NIS_SUCCESS
NIS_SYSTEMERROR
NIS_TOOMANYATTRS
NIS_TRYAGAIN
NIS_TYPEMISMATCH
NIS_PATH
See attributes(5) for descriptions of the following attributes:
|
niscat(1), niserror(1), nismatch(1), nis_cachemgr(1M), nis_clone_object(3NSL), n, nis_destroy_object(3NSL), nis_error(3NSL), nis_getnames(3NSL), nis_local_names(3NSL), nis_names(3NSL), nis_objects(3NSL), nis_server(3NSL), rpc_svc_calls(3NSL), syslog(3C), attributes(5)
Use the flag HARD_LOOKUP carefully since it can cause the application to block indefinitely during a network partition.
NIS+ might not be supported in future releases of the Solaris operating system. Tools to aid the migration from NIS+ to LDAP are available in the current Solaris release. For more information, visit http://www.sun.com/directory/nisplus/transition.html.
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |