/*
* 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
*/
/*
*/
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <strings.h>
#include <stdlib.h>
#include <unistd.h>
#include <netdb.h>
#include <libintl.h>
#include <xti.h>
#include <assert.h>
#include <sys/byteorder.h>
#include "smbfs_lib.h"
#include "smbfs_nb_lib.h"
#include "smbfs_charsets.h"
#include "smbfs_private.h"
/*
* Create a new VC given a list of addresses.
*/
/*
* Ask the IOD to create a VC with this IP address.
*/
static int
{
/*
* Copy the passed address into ssn_srvaddr,
* but first sanity-check lengths. Also,
* zero it first to avoid trailing junk.
*/
return (EINVAL);
return (smbfs_iod_cl_newvc(ctx));
}
/*
* Setup a new VC via the IOD.
* Similar to findvc.c
*/
int
{
int err;
/* Should already have the address list. */
return (EINVAL);
/*
* Get a door handle to the smbiod if we
* don't have one already. This also
* starts the smbiod if necessary.
*/
if (ctx->ct_door_fd < 0) {
if (err != 0)
return (err);
}
case AF_INET:
case AF_INET6:
case AF_NETBIOS:
goto OK;
break;
default:
break;
}
}
/*
* In the error case, the caller may try again
* with new auth. info, so keep the door open.
* Error return will close in smb_ctx_done.
*/
OK:
if (err == 0) {
/* Done with the door handle. */
}
return (err);
}
/*
* Find existing an VC given a list of addresses.
*/
/*
* Ask the driver if it has a VC with this IP address.
*/
static int
{
/*
* Copy the passed address into ssn_srvaddr,
* but first sanity-check lengths. Also,
* zero it first to avoid trailing junk.
*/
return (EINVAL);
return (errno);
return (0);
}
/*
* Find (and reuse) an existing VC.
*/
int
{
int err;
/* Should already have the address list. */
return (EINVAL);
case AF_INET:
case AF_INET6:
case AF_NETBIOS:
break;
default:
break;
}
if (err == 0) {
/* re-use an existing VC */
return (0);
}
}
return (ENOENT);
}
/*
* Forcibly disconnect the current session, even if
* there are others using it! This is used by the
* SMB server netlogon when it wants to setup a new
* logon session and does not want any re-use.
*/
int
{
return (errno);
return (0);
}