/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*
* "user" backend for nsswitch "printers" database. This module implements
* the ${HOME}/.printers naming support. This file provides users with a
* convenient method of aliasing and specifying an interest list.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <nss_dbdefs.h>
#include "user_common.h"
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
static nss_status_t
{
int length = 0;
value++;
}
return (res);
}
key = "all";
else
key = "use";
/* append the value ':' must be escaped for posix style names */
if (*value == ':')
}
return (res);
}
res = NSS_SUCCESS;
return (res);
}
/*
* printers has the hostname as part of the data in the file, but the other
* backends don't include it in the data passed to the backend. For this
* reason, we process everything here and don't bother calling the backend.
*/
/*ARGSUSED*/
static nss_status_t
const char *filter;
/*
* filter not useful here since the key
* we are looking for is the first "word"
* on the line and we can be fast enough.
*/
{
int namelen;
(void) _nss_user_endent(be, 0);
return (NSS_UNAVAIL); /* really panic, malloc failed */
}
res = NSS_NOTFOUND;
/*CONSTCOND*/
while (1) {
char *p, *limit;
int linelen;
int found = 0;
/*
* _nss_user_read_line does process the '\' that are used
* in /etc/printers.conf for continuation and gives one long
* buffer.
*
* linelen counts the characters up to but excluding the '\n'
*/
/* End of file */
break;
}
p = instr;
if (*p == '#') /* comment */
continue;
/*
* find the name in the namelist a|b|c...:
*/
continue;
((*(p+namelen) == '|') ||
found++;
else {
p = limit;
else /* skip the '|' */
p++;
}
}
if (found == 0)
continue;
== NSS_SUCCESS)
break;
}
(void) _nss_user_endent(be, 0);
return (res);
}
static nss_status_t
void *a;
{
return (NSS_UNAVAIL); /* really panic, malloc failed */
}
if (be->f == 0) {
return (res);
}
}
res = NSS_NOTFOUND;
/*CONSTCOND*/
while (1) {
int linelen;
/* End of file */
break;
}
continue;
== NSS_SUCCESS)
break;
}
return (res);
}
static nss_status_t
void *a;
{
return (res);
}
}
};
/*ARGSUSED*/
{
home = "";
return (_nss_user_constr(printers_ops,
sizeof (printers_ops) / sizeof (printers_ops[0]),
}