1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
/*
* Unix SMB/Netbios implementation.
* Version 1.9.
* RPC Pipe client / server routines for Dfs
* Copyright (C) Andrew Tridgell 1992-1997,
* Copyright (C) Luke Kenneth Casson Leighton 1996-1997,
* Copyright (C) Shirish Kalele 2000.
* Copyright (C) Jeremy Allison 2001.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* This is the interface to the dfs pipe. */
#include "includes.h"
#include "nterr.h"
#define MAX_MSDFS_JUNCTIONS 256
extern pstring global_myname;
#ifdef WITH_MSDFS
/**********************************************************************
api_dfs_exist
**********************************************************************/
static BOOL api_dfs_exist(pipes_struct *p)
{
DFS_Q_DFS_EXIST q_u;
DFS_R_DFS_EXIST r_u;
prs_struct *data = &p->in_data.data;
prs_struct *rdata = &p->out_data.rdata;
if(!dfs_io_q_dfs_exist("", &q_u, data, 0))
return False;
r_u.status = _dfs_exist(p, &q_u, &r_u);
if (!dfs_io_r_dfs_exist("", &r_u, rdata, 0))
return False;
return True;
}
/*****************************************************************
api_dfs_add
*****************************************************************/
static BOOL api_dfs_add(pipes_struct *p)
{
DFS_Q_DFS_ADD q_u;
DFS_R_DFS_ADD r_u;
prs_struct *data = &p->in_data.data;
prs_struct *rdata = &p->out_data.rdata;
ZERO_STRUCT(q_u);
ZERO_STRUCT(r_u);
if(!dfs_io_q_dfs_add("", &q_u, data, 0))
return False;
r_u.status = _dfs_add(p, &q_u, &r_u);
if (!dfs_io_r_dfs_add("", &r_u, rdata, 0))
return False;
return True;
}
/*****************************************************************
api_dfs_remove
*****************************************************************/
static BOOL api_dfs_remove(pipes_struct *p)
{
DFS_Q_DFS_REMOVE q_u;
DFS_R_DFS_REMOVE r_u;
prs_struct *data = &p->in_data.data;
prs_struct *rdata = &p->out_data.rdata;
ZERO_STRUCT(q_u);
ZERO_STRUCT(r_u);
if(!dfs_io_q_dfs_remove("", &q_u, data, 0))
return False;
r_u.status = _dfs_remove(p, &q_u, &r_u);
if (!dfs_io_r_dfs_remove("", &r_u, rdata, 0))
return False;
return True;
}
/*******************************************************************
api_dfs_get_info
*******************************************************************/
static BOOL api_dfs_get_info(pipes_struct *p)
{
DFS_Q_DFS_GET_INFO q_u;
DFS_R_DFS_GET_INFO r_u;
prs_struct *data = &p->in_data.data;
prs_struct *rdata = &p->out_data.rdata;
ZERO_STRUCT(q_u);
ZERO_STRUCT(r_u);
if(!dfs_io_q_dfs_get_info("", &q_u, data, 0))
return False;
r_u.status = _dfs_get_info(p, &q_u, &r_u);
if(!dfs_io_r_dfs_get_info("", &r_u, rdata, 0))
return False;
return True;
}
/*******************************************************************
api_dfs_enum
*******************************************************************/
static BOOL api_dfs_enum(pipes_struct *p)
{
DFS_Q_DFS_ENUM q_u;
DFS_R_DFS_ENUM r_u;
prs_struct *data = &p->in_data.data;
prs_struct *rdata = &p->out_data.rdata;
ZERO_STRUCT(q_u);
ZERO_STRUCT(r_u);
if(!dfs_io_q_dfs_enum("", &q_u, data, 0))
return False;
r_u.status = _dfs_enum(p, &q_u, &r_u);
if(!dfs_io_r_dfs_enum("", &r_u, rdata, 0))
return False;
return True;
}
/*******************************************************************
\pipe\netdfs commands
********************************************************************/
struct api_struct api_netdfs_cmds[] =
{
{"DFS_EXIST", DFS_EXIST, api_dfs_exist },
{"DFS_ADD", DFS_ADD, api_dfs_add },
{"DFS_REMOVE", DFS_REMOVE, api_dfs_remove },
{"DFS_GET_INFO", DFS_GET_INFO, api_dfs_get_info },
{"DFS_ENUM", DFS_ENUM, api_dfs_enum },
{NULL, 0, NULL }
};
/*******************************************************************
receives a netdfs pipe and responds.
********************************************************************/
BOOL api_netdfs_rpc(pipes_struct *p)
{
return api_rpcTNP(p, "api_netdfs_rpc", api_netdfs_cmds);
}
#else
void dfs_dummy(void) {;} /* So some compilers don't complain. */
#endif
|