1992-08-12 14:57:12 +00:00
|
|
|
/***********************************************************
|
|
|
|
Written by:
|
|
|
|
Fred Gansevles <Fred.Gansevles@cs.utwente.nl>
|
|
|
|
Vakgroep Spa,
|
|
|
|
Faculteit der Informatica,
|
|
|
|
Universiteit Twente,
|
|
|
|
Enschede,
|
|
|
|
the Netherlands.
|
|
|
|
******************************************************************/
|
|
|
|
|
|
|
|
/* NIS module implementation */
|
|
|
|
|
|
|
|
#include "allobjects.h"
|
|
|
|
#include "modsupport.h"
|
|
|
|
#include "ceval.h"
|
|
|
|
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <rpc/rpc.h>
|
|
|
|
#include <rpcsvc/yp_prot.h>
|
1996-08-08 19:11:41 +00:00
|
|
|
#include <rpcsvc/ypclnt.h>
|
1992-08-12 14:57:12 +00:00
|
|
|
|
1996-12-09 18:46:28 +00:00
|
|
|
#ifdef __sgi
|
|
|
|
/* This is missing from rpcsvc/ypclnt.h */
|
|
|
|
extern int yp_get_default_domain();
|
|
|
|
#endif
|
|
|
|
|
1992-08-12 15:26:16 +00:00
|
|
|
static object *NisError;
|
|
|
|
|
|
|
|
static object *
|
|
|
|
nis_error (err)
|
|
|
|
int err;
|
|
|
|
{
|
|
|
|
err_setstr(NisError, yperr_string(err));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1992-08-12 14:57:12 +00:00
|
|
|
static struct nis_map {
|
|
|
|
char *alias;
|
|
|
|
char *map;
|
|
|
|
} aliases [] = {
|
1992-08-12 15:26:16 +00:00
|
|
|
{"passwd", "passwd.byname"},
|
|
|
|
{"group", "group.byname"},
|
|
|
|
{"networks", "networks.byaddr"},
|
|
|
|
{"hosts", "hosts.byname"},
|
|
|
|
{"protocols", "protocols.bynumber"},
|
|
|
|
{"services", "services.byname"},
|
|
|
|
{"aliases", "mail.aliases"},
|
|
|
|
{"ethers", "ethers.byname"},
|
|
|
|
{0L, 0L}
|
1992-08-12 14:57:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static char *
|
|
|
|
nis_mapname (map)
|
1992-08-12 15:26:16 +00:00
|
|
|
char *map;
|
1992-08-12 14:57:12 +00:00
|
|
|
{
|
1992-08-12 15:26:16 +00:00
|
|
|
int i;
|
1992-08-12 14:57:12 +00:00
|
|
|
|
|
|
|
for (i=0; aliases[i].alias != 0L; i++)
|
|
|
|
if (!strcmp (aliases[i].alias, map))
|
|
|
|
map = aliases[i].map;
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
1994-08-01 11:34:53 +00:00
|
|
|
typedef int (*foreachfunc) PROTO((int, char *, int, char *, int, char *));
|
|
|
|
|
1992-08-12 14:57:12 +00:00
|
|
|
static int
|
1992-08-12 15:26:16 +00:00
|
|
|
nis_foreach (instatus, inkey, inkeylen, inval, invallen, indata)
|
|
|
|
int instatus;
|
|
|
|
char *inkey;
|
|
|
|
int inkeylen;
|
|
|
|
char *inval;
|
|
|
|
int invallen;
|
|
|
|
object *indata;
|
1992-08-12 14:57:12 +00:00
|
|
|
{
|
|
|
|
if (instatus == YP_TRUE) {
|
1993-11-03 15:01:26 +00:00
|
|
|
object *key = newsizedstringobject(inkey, inkeylen);
|
|
|
|
object *val = newsizedstringobject(inval, invallen);
|
|
|
|
int err;
|
|
|
|
if (key == NULL || val == NULL) {
|
|
|
|
/* XXX error -- don't know how to handle */
|
|
|
|
err_clear();
|
|
|
|
XDECREF(key);
|
|
|
|
XDECREF(val);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
err = mappinginsert(indata, key, val);
|
|
|
|
DECREF(key);
|
|
|
|
DECREF(val);
|
|
|
|
if (err != 0) {
|
|
|
|
err_clear();
|
|
|
|
return 1;
|
|
|
|
}
|
1992-08-12 14:57:12 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
nis_match (self, args)
|
1992-08-12 15:26:16 +00:00
|
|
|
object *self;
|
|
|
|
object *args;
|
1992-08-12 14:57:12 +00:00
|
|
|
{
|
1992-08-12 15:26:16 +00:00
|
|
|
char *match;
|
|
|
|
char *domain;
|
1993-11-03 15:01:26 +00:00
|
|
|
int keylen, len;
|
1992-08-12 15:26:16 +00:00
|
|
|
char *key, *map;
|
|
|
|
int err;
|
|
|
|
object *res;
|
1992-08-12 14:57:12 +00:00
|
|
|
|
1993-11-03 15:01:26 +00:00
|
|
|
if (!getargs(args, "(s#s)", &key, &keylen, &map))
|
1992-08-12 14:57:12 +00:00
|
|
|
return NULL;
|
1992-08-12 15:26:16 +00:00
|
|
|
if ((err = yp_get_default_domain(&domain)) != 0)
|
|
|
|
return nis_error(err);
|
1992-08-12 14:57:12 +00:00
|
|
|
BGN_SAVE
|
1992-08-12 15:26:16 +00:00
|
|
|
map = nis_mapname (map);
|
1993-11-03 15:01:26 +00:00
|
|
|
err = yp_match (domain, map, key, keylen, &match, &len);
|
1992-08-12 14:57:12 +00:00
|
|
|
END_SAVE
|
1992-08-12 15:26:16 +00:00
|
|
|
if (err != 0)
|
|
|
|
return nis_error(err);
|
|
|
|
res = newsizedstringobject (match, len);
|
|
|
|
free (match);
|
|
|
|
return res;
|
1992-08-12 14:57:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
nis_cat (self, args)
|
1992-08-12 15:26:16 +00:00
|
|
|
object *self;
|
|
|
|
object *args;
|
1992-08-12 14:57:12 +00:00
|
|
|
{
|
1992-08-12 15:26:16 +00:00
|
|
|
char *domain;
|
|
|
|
char *map;
|
|
|
|
struct ypall_callback cb;
|
|
|
|
object *cat;
|
|
|
|
int err;
|
1992-08-12 14:57:12 +00:00
|
|
|
|
|
|
|
if (!getstrarg(args, &map))
|
|
|
|
return NULL;
|
1992-08-12 15:26:16 +00:00
|
|
|
if ((err = yp_get_default_domain(&domain)) != 0)
|
|
|
|
return nis_error(err);
|
1992-08-12 14:57:12 +00:00
|
|
|
cat = newdictobject ();
|
|
|
|
if (cat == NULL)
|
|
|
|
return NULL;
|
1994-08-01 11:34:53 +00:00
|
|
|
cb.foreach = (foreachfunc)nis_foreach;
|
1992-08-12 14:57:12 +00:00
|
|
|
cb.data = (char *)cat;
|
|
|
|
BGN_SAVE
|
1992-08-12 15:26:16 +00:00
|
|
|
map = nis_mapname (map);
|
|
|
|
err = yp_all (domain, map, &cb);
|
1992-08-12 14:57:12 +00:00
|
|
|
END_SAVE
|
1992-08-12 15:26:16 +00:00
|
|
|
if (err != 0) {
|
|
|
|
DECREF(cat);
|
|
|
|
return nis_error(err);
|
|
|
|
}
|
1992-08-12 14:57:12 +00:00
|
|
|
return cat;
|
|
|
|
}
|
|
|
|
|
1994-08-01 11:34:53 +00:00
|
|
|
/* These should be u_long on Sun h/w but not on 64-bit h/w.
|
|
|
|
This is not portable to machines with 16-bit ints and no prototypes */
|
|
|
|
#ifndef YPPROC_MAPLIST
|
|
|
|
#define YPPROC_MAPLIST 11
|
|
|
|
#endif
|
|
|
|
#ifndef YPPROG
|
|
|
|
#define YPPROG 100004
|
|
|
|
#endif
|
|
|
|
#ifndef YPVERS
|
|
|
|
#define YPVERS 2
|
|
|
|
#endif
|
1992-08-12 14:57:12 +00:00
|
|
|
|
|
|
|
typedef char *domainname;
|
|
|
|
typedef char *mapname;
|
|
|
|
|
|
|
|
enum nisstat {
|
|
|
|
NIS_TRUE = 1,
|
|
|
|
NIS_NOMORE = 2,
|
|
|
|
NIS_FALSE = 0,
|
|
|
|
NIS_NOMAP = -1,
|
|
|
|
NIS_NODOM = -2,
|
|
|
|
NIS_NOKEY = -3,
|
|
|
|
NIS_BADOP = -4,
|
|
|
|
NIS_BADDB = -5,
|
|
|
|
NIS_YPERR = -6,
|
|
|
|
NIS_BADARGS = -7,
|
|
|
|
NIS_VERS = -8
|
|
|
|
};
|
|
|
|
typedef enum nisstat nisstat;
|
|
|
|
|
|
|
|
struct nismaplist {
|
|
|
|
mapname map;
|
|
|
|
struct nismaplist *next;
|
|
|
|
};
|
|
|
|
typedef struct nismaplist nismaplist;
|
|
|
|
|
|
|
|
struct nisresp_maplist {
|
|
|
|
nisstat stat;
|
|
|
|
nismaplist *maps;
|
|
|
|
};
|
|
|
|
typedef struct nisresp_maplist nisresp_maplist;
|
|
|
|
|
|
|
|
static struct timeval TIMEOUT = { 25, 0 };
|
|
|
|
|
|
|
|
static
|
|
|
|
bool_t
|
|
|
|
nis_xdr_domainname(xdrs, objp)
|
|
|
|
XDR *xdrs;
|
|
|
|
domainname *objp;
|
|
|
|
{
|
|
|
|
if (!xdr_string(xdrs, objp, YPMAXDOMAIN)) {
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
bool_t
|
|
|
|
nis_xdr_mapname(xdrs, objp)
|
|
|
|
XDR *xdrs;
|
|
|
|
mapname *objp;
|
|
|
|
{
|
|
|
|
if (!xdr_string(xdrs, objp, YPMAXMAP)) {
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
bool_t
|
|
|
|
nis_xdr_ypmaplist(xdrs, objp)
|
|
|
|
XDR *xdrs;
|
|
|
|
nismaplist *objp;
|
|
|
|
{
|
|
|
|
if (!nis_xdr_mapname(xdrs, &objp->map)) {
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
if (!xdr_pointer(xdrs, (char **)&objp->next, sizeof(nismaplist), nis_xdr_ypmaplist)) {
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
bool_t
|
|
|
|
nis_xdr_ypstat(xdrs, objp)
|
|
|
|
XDR *xdrs;
|
|
|
|
nisstat *objp;
|
|
|
|
{
|
|
|
|
if (!xdr_enum(xdrs, (enum_t *)objp)) {
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static
|
|
|
|
bool_t
|
|
|
|
nis_xdr_ypresp_maplist(xdrs, objp)
|
|
|
|
XDR *xdrs;
|
|
|
|
nisresp_maplist *objp;
|
|
|
|
{
|
|
|
|
if (!nis_xdr_ypstat(xdrs, &objp->stat)) {
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
if (!xdr_pointer(xdrs, (char **)&objp->maps, sizeof(nismaplist), nis_xdr_ypmaplist)) {
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static
|
|
|
|
nisresp_maplist *
|
|
|
|
nisproc_maplist_2(argp, clnt)
|
|
|
|
domainname *argp;
|
|
|
|
CLIENT *clnt;
|
|
|
|
{
|
|
|
|
static nisresp_maplist res;
|
|
|
|
|
|
|
|
memset(&res, 0, sizeof(res));
|
1994-08-01 11:34:53 +00:00
|
|
|
if (clnt_call(clnt, YPPROC_MAPLIST, nis_xdr_domainname, (caddr_t)argp,
|
|
|
|
nis_xdr_ypresp_maplist, (caddr_t)&res, TIMEOUT)
|
|
|
|
!= RPC_SUCCESS) {
|
1992-08-12 14:57:12 +00:00
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
return (&res);
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
nismaplist *
|
|
|
|
nis_maplist ()
|
|
|
|
{
|
1992-08-12 15:26:16 +00:00
|
|
|
nisresp_maplist *list;
|
|
|
|
char *dom;
|
|
|
|
CLIENT *cl, *clnt_create();
|
|
|
|
char *server;
|
1992-08-12 14:57:12 +00:00
|
|
|
|
|
|
|
yp_get_default_domain (&dom);
|
|
|
|
yp_master (dom, aliases[0].map, &server);
|
|
|
|
cl = clnt_create(server, YPPROG, YPVERS, "tcp");
|
|
|
|
if (cl == NULL) {
|
|
|
|
clnt_pcreateerror(server);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
list = nisproc_maplist_2 (&dom, cl);
|
|
|
|
if (list == NULL)
|
|
|
|
return NULL;
|
|
|
|
if (list->stat != NIS_TRUE)
|
|
|
|
return NULL;
|
|
|
|
return list->maps;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
nis_maps (self, args)
|
1992-08-12 15:26:16 +00:00
|
|
|
object *self;
|
1992-08-12 14:57:12 +00:00
|
|
|
object *args;
|
|
|
|
{
|
1992-08-12 15:26:16 +00:00
|
|
|
nismaplist *maps;
|
|
|
|
object *list;
|
1992-08-12 14:57:12 +00:00
|
|
|
|
|
|
|
if ((maps = nis_maplist ()) == NULL)
|
|
|
|
return NULL;
|
|
|
|
if ((list = newlistobject(0)) == NULL)
|
|
|
|
return NULL;
|
1992-08-12 15:26:16 +00:00
|
|
|
for (maps = maps->next; maps; maps = maps->next) {
|
|
|
|
if (addlistitem (list, newstringobject (maps->map)) < 0) {
|
|
|
|
DECREF(list);
|
|
|
|
list = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* XXX Shouldn't we free the list of maps now? */
|
1992-08-12 14:57:12 +00:00
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct methodlist nis_methods[] = {
|
|
|
|
{"match", nis_match},
|
|
|
|
{"cat", nis_cat},
|
|
|
|
{"maps", nis_maps},
|
|
|
|
{NULL, NULL} /* Sentinel */
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
initnis ()
|
|
|
|
{
|
1992-08-12 15:26:16 +00:00
|
|
|
object *m, *d;
|
|
|
|
m = initmodule("nis", nis_methods);
|
|
|
|
d = getmoduledict(m);
|
|
|
|
NisError = newstringobject("nis.error");
|
|
|
|
if (NisError == NULL || dictinsert(d, "error", NisError) != 0)
|
|
|
|
fatal("Cannot define nis.error");
|
1992-08-12 14:57:12 +00:00
|
|
|
}
|