mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 07:37:02 +00:00
1341 lines
33 KiB
C
1341 lines
33 KiB
C
/*
|
|
* Copyright 2009 Hans Leidekker for CodeWeavers
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
|
|
#define COBJMACROS
|
|
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "winuser.h"
|
|
#include "ole2.h"
|
|
#include "netfw.h"
|
|
|
|
#include "wine/debug.h"
|
|
#include "hnetcfg_private.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(hnetcfg);
|
|
|
|
typedef struct fw_policy
|
|
{
|
|
INetFwPolicy INetFwPolicy_iface;
|
|
LONG refs;
|
|
} fw_policy;
|
|
|
|
static inline fw_policy *impl_from_INetFwPolicy( INetFwPolicy *iface )
|
|
{
|
|
return CONTAINING_RECORD(iface, fw_policy, INetFwPolicy_iface);
|
|
}
|
|
|
|
typedef struct fw_policy2
|
|
{
|
|
INetFwPolicy2 INetFwPolicy2_iface;
|
|
INetFwRules *fw_policy2_rules;
|
|
LONG refs;
|
|
} fw_policy2;
|
|
|
|
static inline fw_policy2 *impl_from_INetFwPolicy2( INetFwPolicy2 *iface )
|
|
{
|
|
return CONTAINING_RECORD(iface, fw_policy2, INetFwPolicy2_iface);
|
|
}
|
|
|
|
typedef struct fw_rule
|
|
{
|
|
INetFwRule INetFwRule_iface;
|
|
LONG refs;
|
|
} fw_rule;
|
|
|
|
static inline fw_rule *impl_from_INetFwRule( INetFwRule *iface )
|
|
{
|
|
return CONTAINING_RECORD(iface, fw_rule, INetFwRule_iface);
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_QueryInterface(
|
|
INetFwRule *iface,
|
|
REFIID riid,
|
|
void **object)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
TRACE("%p %s %p\n", This, debugstr_guid( riid ), object );
|
|
|
|
if ( IsEqualGUID( riid, &IID_INetFwRule ) ||
|
|
IsEqualGUID( riid, &IID_IDispatch ) ||
|
|
IsEqualGUID( riid, &IID_IUnknown ) )
|
|
{
|
|
*object = iface;
|
|
}
|
|
else
|
|
{
|
|
FIXME("interface %s not implemented\n", debugstr_guid(riid));
|
|
return E_NOINTERFACE;
|
|
}
|
|
INetFwRule_AddRef( iface );
|
|
return S_OK;
|
|
}
|
|
|
|
static ULONG WINAPI netfw_rule_AddRef(
|
|
INetFwRule *iface )
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
return InterlockedIncrement( &This->refs );
|
|
}
|
|
|
|
static ULONG WINAPI netfw_rule_Release(
|
|
INetFwRule *iface )
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
LONG refs = InterlockedDecrement( &This->refs );
|
|
if (!refs)
|
|
{
|
|
TRACE("destroying %p\n", This);
|
|
free( This );
|
|
}
|
|
return refs;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_GetTypeInfoCount(
|
|
INetFwRule *iface,
|
|
UINT *pctinfo )
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
TRACE("%p %p\n", This, pctinfo);
|
|
*pctinfo = 1;
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_GetTypeInfo(
|
|
INetFwRule *iface,
|
|
UINT iTInfo,
|
|
LCID lcid,
|
|
ITypeInfo **ppTInfo)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
TRACE("%p %u %lu %p\n", This, iTInfo, lcid, ppTInfo);
|
|
return get_typeinfo( INetFwRule_tid, ppTInfo );
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_GetIDsOfNames(
|
|
INetFwRule *iface,
|
|
REFIID riid,
|
|
LPOLESTR *rgszNames,
|
|
UINT cNames,
|
|
LCID lcid,
|
|
DISPID *rgDispId)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
ITypeInfo *typeinfo;
|
|
HRESULT hr;
|
|
|
|
TRACE("%p %s %p %u %lu %p\n", This, debugstr_guid(riid), rgszNames, cNames, lcid, rgDispId);
|
|
|
|
hr = get_typeinfo( INetFwRule_tid, &typeinfo );
|
|
if (SUCCEEDED(hr))
|
|
{
|
|
hr = ITypeInfo_GetIDsOfNames( typeinfo, rgszNames, cNames, rgDispId );
|
|
ITypeInfo_Release( typeinfo );
|
|
}
|
|
return hr;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_Invoke(
|
|
INetFwRule *iface,
|
|
DISPID dispIdMember,
|
|
REFIID riid,
|
|
LCID lcid,
|
|
WORD wFlags,
|
|
DISPPARAMS *pDispParams,
|
|
VARIANT *pVarResult,
|
|
EXCEPINFO *pExcepInfo,
|
|
UINT *puArgErr)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
ITypeInfo *typeinfo;
|
|
HRESULT hr;
|
|
|
|
TRACE("%p %ld %s %ld %d %p %p %p %p\n", This, dispIdMember, debugstr_guid(riid),
|
|
lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
|
|
|
|
hr = get_typeinfo( INetFwRule_tid, &typeinfo );
|
|
if (SUCCEEDED(hr))
|
|
{
|
|
hr = ITypeInfo_Invoke( typeinfo, &This->INetFwRule_iface, dispIdMember,
|
|
wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr );
|
|
ITypeInfo_Release( typeinfo );
|
|
}
|
|
return hr;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_get_Name(
|
|
INetFwRule *iface,
|
|
BSTR *name)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %p\n", This, name);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_put_Name(
|
|
INetFwRule *iface,
|
|
BSTR name)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %s\n", This, debugstr_w(name));
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_get_Description(
|
|
INetFwRule *iface,
|
|
BSTR *desc)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %p\n", This, desc);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_put_Description(
|
|
INetFwRule *iface,
|
|
BSTR desc)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %s\n", This, debugstr_w(desc));
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_get_ApplicationName(
|
|
INetFwRule *iface,
|
|
BSTR *app)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %p\n", This, app);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_put_ApplicationName(
|
|
INetFwRule *iface,
|
|
BSTR app)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %s\n", This, debugstr_w(app));
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_get_ServiceName(
|
|
INetFwRule *iface,
|
|
BSTR *service)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %p\n", This, service);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_put_ServiceName(
|
|
INetFwRule *iface,
|
|
BSTR service)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %s\n", This, debugstr_w(service));
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_get_Protocol(
|
|
INetFwRule *iface,
|
|
LONG *protocol)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %p\n", This, protocol);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_put_Protocol(
|
|
INetFwRule *iface,
|
|
LONG protocol)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %ld\n", This, protocol);
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_get_LocalPorts(
|
|
INetFwRule *iface,
|
|
BSTR *ports)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %p\n", This, ports);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_put_LocalPorts(
|
|
INetFwRule *iface,
|
|
BSTR ports)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %s\n", This, debugstr_w(ports));
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_get_RemotePorts(
|
|
INetFwRule *iface,
|
|
BSTR *ports)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %p\n", This, ports);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_put_RemotePorts(
|
|
INetFwRule *iface,
|
|
BSTR ports)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %s\n", This, debugstr_w(ports));
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_get_LocalAddresses(
|
|
INetFwRule *iface,
|
|
BSTR *addresses)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %p\n", This, addresses);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_put_LocalAddresses(
|
|
INetFwRule *iface,
|
|
BSTR addresses)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %s\n", This, debugstr_w(addresses));
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_get_RemoteAddresses(
|
|
INetFwRule *iface,
|
|
BSTR *addresses)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %p\n", This, addresses);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_put_RemoteAddresses(
|
|
INetFwRule *iface,
|
|
BSTR addresses)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %s\n", This, debugstr_w(addresses));
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_get_IcmpTypesAndCodes(
|
|
INetFwRule *iface,
|
|
BSTR *codes)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %p\n", This, codes);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_put_IcmpTypesAndCodes(
|
|
INetFwRule *iface,
|
|
BSTR codes)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %s\n", This, debugstr_w(codes));
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_get_Direction(
|
|
INetFwRule *iface,
|
|
NET_FW_RULE_DIRECTION *dir)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %p\n", This, dir);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_put_Direction(
|
|
INetFwRule *iface,
|
|
NET_FW_RULE_DIRECTION dir)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %u\n", This, dir);
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_get_Interfaces(
|
|
INetFwRule *iface,
|
|
VARIANT *interfaces)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %p\n", This, interfaces);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_put_Interfaces(
|
|
INetFwRule *iface,
|
|
VARIANT interfaces)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %s\n", This, debugstr_variant(&interfaces));
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_get_InterfaceTypes(
|
|
INetFwRule *iface,
|
|
BSTR *types)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %p\n", This, types);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_put_InterfaceTypes(
|
|
INetFwRule *iface,
|
|
BSTR types)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %s\n", This, debugstr_w(types));
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_get_Enabled(
|
|
INetFwRule *iface,
|
|
VARIANT_BOOL *enabled)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %p\n", This, enabled);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_put_Enabled(
|
|
INetFwRule *iface,
|
|
VARIANT_BOOL enabled)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %#x\n", This, enabled);
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_get_Grouping(
|
|
INetFwRule *iface,
|
|
BSTR *grouping)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %p\n", This, grouping);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_put_Grouping(
|
|
INetFwRule *iface,
|
|
BSTR grouping)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %s\n", This, debugstr_w(grouping));
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_get_Profiles(
|
|
INetFwRule *iface,
|
|
LONG *profiles)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %p\n", This, profiles);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_put_Profiles(
|
|
INetFwRule *iface,
|
|
LONG profiles)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %#lx\n", This, profiles);
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_get_EdgeTraversal(
|
|
INetFwRule *iface,
|
|
VARIANT_BOOL *enabled)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %p\n", This, enabled);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_put_EdgeTraversal(
|
|
INetFwRule *iface,
|
|
VARIANT_BOOL enabled)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %#x\n", This, enabled);
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_get_Action(
|
|
INetFwRule *iface,
|
|
NET_FW_ACTION *action)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %p\n", This, action);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rule_put_Action(
|
|
INetFwRule *iface,
|
|
NET_FW_ACTION action)
|
|
{
|
|
fw_rule *This = impl_from_INetFwRule( iface );
|
|
|
|
FIXME("%p, %u\n", This, action);
|
|
return S_OK;
|
|
}
|
|
|
|
static const struct INetFwRuleVtbl fw_rule_vtbl =
|
|
{
|
|
netfw_rule_QueryInterface,
|
|
netfw_rule_AddRef,
|
|
netfw_rule_Release,
|
|
netfw_rule_GetTypeInfoCount,
|
|
netfw_rule_GetTypeInfo,
|
|
netfw_rule_GetIDsOfNames,
|
|
netfw_rule_Invoke,
|
|
netfw_rule_get_Name,
|
|
netfw_rule_put_Name,
|
|
netfw_rule_get_Description,
|
|
netfw_rule_put_Description,
|
|
netfw_rule_get_ApplicationName,
|
|
netfw_rule_put_ApplicationName,
|
|
netfw_rule_get_ServiceName,
|
|
netfw_rule_put_ServiceName,
|
|
netfw_rule_get_Protocol,
|
|
netfw_rule_put_Protocol,
|
|
netfw_rule_get_LocalPorts,
|
|
netfw_rule_put_LocalPorts,
|
|
netfw_rule_get_RemotePorts,
|
|
netfw_rule_put_RemotePorts,
|
|
netfw_rule_get_LocalAddresses,
|
|
netfw_rule_put_LocalAddresses,
|
|
netfw_rule_get_RemoteAddresses,
|
|
netfw_rule_put_RemoteAddresses,
|
|
netfw_rule_get_IcmpTypesAndCodes,
|
|
netfw_rule_put_IcmpTypesAndCodes,
|
|
netfw_rule_get_Direction,
|
|
netfw_rule_put_Direction,
|
|
netfw_rule_get_Interfaces,
|
|
netfw_rule_put_Interfaces,
|
|
netfw_rule_get_InterfaceTypes,
|
|
netfw_rule_put_InterfaceTypes,
|
|
netfw_rule_get_Enabled,
|
|
netfw_rule_put_Enabled,
|
|
netfw_rule_get_Grouping,
|
|
netfw_rule_put_Grouping,
|
|
netfw_rule_get_Profiles,
|
|
netfw_rule_put_Profiles,
|
|
netfw_rule_get_EdgeTraversal,
|
|
netfw_rule_put_EdgeTraversal,
|
|
netfw_rule_get_Action,
|
|
netfw_rule_put_Action,
|
|
};
|
|
|
|
HRESULT NetFwRule_create( IUnknown *outer, void **obj )
|
|
{
|
|
fw_rule *rule;
|
|
|
|
TRACE("(%p)\n", obj);
|
|
|
|
rule = malloc( sizeof(*rule) );
|
|
if (!rule) return E_OUTOFMEMORY;
|
|
|
|
rule->INetFwRule_iface.lpVtbl = &fw_rule_vtbl;
|
|
rule->refs = 1;
|
|
|
|
*obj = &rule->INetFwRule_iface;
|
|
|
|
TRACE("returning iface %p\n", *obj);
|
|
return S_OK;
|
|
}
|
|
|
|
typedef struct fw_rules
|
|
{
|
|
INetFwRules INetFwRules_iface;
|
|
LONG refs;
|
|
} fw_rules;
|
|
|
|
static inline fw_rules *impl_from_INetFwRules( INetFwRules *iface )
|
|
{
|
|
return CONTAINING_RECORD(iface, fw_rules, INetFwRules_iface);
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rules_QueryInterface(
|
|
INetFwRules *iface,
|
|
REFIID riid,
|
|
void **object)
|
|
{
|
|
fw_rules *This = impl_from_INetFwRules( iface );
|
|
|
|
TRACE("%p %s %p\n", This, debugstr_guid( riid ), object );
|
|
|
|
if ( IsEqualGUID( riid, &IID_INetFwRules ) ||
|
|
IsEqualGUID( riid, &IID_IDispatch ) ||
|
|
IsEqualGUID( riid, &IID_IUnknown ) )
|
|
{
|
|
*object = iface;
|
|
}
|
|
else
|
|
{
|
|
FIXME("interface %s not implemented\n", debugstr_guid(riid));
|
|
return E_NOINTERFACE;
|
|
}
|
|
INetFwRules_AddRef( iface );
|
|
return S_OK;
|
|
}
|
|
|
|
static ULONG WINAPI netfw_rules_AddRef(
|
|
INetFwRules *iface )
|
|
{
|
|
fw_rules *This = impl_from_INetFwRules( iface );
|
|
return InterlockedIncrement( &This->refs );
|
|
}
|
|
|
|
static ULONG WINAPI netfw_rules_Release(
|
|
INetFwRules *iface )
|
|
{
|
|
fw_rules *This = impl_from_INetFwRules( iface );
|
|
LONG refs = InterlockedDecrement( &This->refs );
|
|
if (!refs)
|
|
{
|
|
TRACE("destroying %p\n", This);
|
|
free( This );
|
|
}
|
|
return refs;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rules_GetTypeInfoCount(
|
|
INetFwRules *iface,
|
|
UINT *pctinfo )
|
|
{
|
|
fw_rules *This = impl_from_INetFwRules( iface );
|
|
|
|
TRACE("%p %p\n", This, pctinfo);
|
|
*pctinfo = 1;
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rules_GetTypeInfo(
|
|
INetFwRules *iface,
|
|
UINT iTInfo,
|
|
LCID lcid,
|
|
ITypeInfo **ppTInfo)
|
|
{
|
|
fw_rules *This = impl_from_INetFwRules( iface );
|
|
|
|
TRACE("%p %u %lu %p\n", This, iTInfo, lcid, ppTInfo);
|
|
return get_typeinfo( INetFwRules_tid, ppTInfo );
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rules_GetIDsOfNames(
|
|
INetFwRules *iface,
|
|
REFIID riid,
|
|
LPOLESTR *rgszNames,
|
|
UINT cNames,
|
|
LCID lcid,
|
|
DISPID *rgDispId)
|
|
{
|
|
fw_rules *This = impl_from_INetFwRules( iface );
|
|
ITypeInfo *typeinfo;
|
|
HRESULT hr;
|
|
|
|
TRACE("%p %s %p %u %lu %p\n", This, debugstr_guid(riid), rgszNames, cNames, lcid, rgDispId);
|
|
|
|
hr = get_typeinfo( INetFwRules_tid, &typeinfo );
|
|
if (SUCCEEDED(hr))
|
|
{
|
|
hr = ITypeInfo_GetIDsOfNames( typeinfo, rgszNames, cNames, rgDispId );
|
|
ITypeInfo_Release( typeinfo );
|
|
}
|
|
return hr;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rules_Invoke(
|
|
INetFwRules *iface,
|
|
DISPID dispIdMember,
|
|
REFIID riid,
|
|
LCID lcid,
|
|
WORD wFlags,
|
|
DISPPARAMS *pDispParams,
|
|
VARIANT *pVarResult,
|
|
EXCEPINFO *pExcepInfo,
|
|
UINT *puArgErr)
|
|
{
|
|
fw_rules *This = impl_from_INetFwRules( iface );
|
|
ITypeInfo *typeinfo;
|
|
HRESULT hr;
|
|
|
|
TRACE("%p %ld %s %ld %d %p %p %p %p\n", This, dispIdMember, debugstr_guid(riid),
|
|
lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
|
|
|
|
hr = get_typeinfo( INetFwRules_tid, &typeinfo );
|
|
if (SUCCEEDED(hr))
|
|
{
|
|
hr = ITypeInfo_Invoke( typeinfo, &This->INetFwRules_iface, dispIdMember,
|
|
wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr );
|
|
ITypeInfo_Release( typeinfo );
|
|
}
|
|
return hr;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rules_get_Count(
|
|
INetFwRules *iface,
|
|
LONG *count)
|
|
{
|
|
fw_rules *This = impl_from_INetFwRules( iface );
|
|
|
|
FIXME("%p, %p\n", This, count);
|
|
|
|
if (count)
|
|
*count = 0;
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rules_Add(
|
|
INetFwRules *iface,
|
|
INetFwRule *rule)
|
|
{
|
|
fw_rules *This = impl_from_INetFwRules( iface );
|
|
|
|
FIXME("%p, %p\n", This, rule);
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rules_Remove(
|
|
INetFwRules *iface,
|
|
BSTR name)
|
|
{
|
|
fw_rules *This = impl_from_INetFwRules( iface );
|
|
|
|
FIXME("%p, %s\n", This, debugstr_w(name));
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rules_Item(
|
|
INetFwRules *iface,
|
|
BSTR name,
|
|
INetFwRule **rule)
|
|
{
|
|
fw_rules *This = impl_from_INetFwRules( iface );
|
|
|
|
FIXME("%p, %s, %p\n", This, debugstr_w(name), rule);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI netfw_rules_get__NewEnum(
|
|
INetFwRules *iface,
|
|
IUnknown **newEnum)
|
|
{
|
|
fw_rules *This = impl_from_INetFwRules( iface );
|
|
|
|
FIXME("%p, %p\n", This, newEnum);
|
|
|
|
if (!newEnum) return E_POINTER;
|
|
*newEnum = NULL;
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static const struct INetFwRulesVtbl fw_rules_vtbl =
|
|
{
|
|
netfw_rules_QueryInterface,
|
|
netfw_rules_AddRef,
|
|
netfw_rules_Release,
|
|
netfw_rules_GetTypeInfoCount,
|
|
netfw_rules_GetTypeInfo,
|
|
netfw_rules_GetIDsOfNames,
|
|
netfw_rules_Invoke,
|
|
netfw_rules_get_Count,
|
|
netfw_rules_Add,
|
|
netfw_rules_Remove,
|
|
netfw_rules_Item,
|
|
netfw_rules_get__NewEnum
|
|
};
|
|
|
|
static HRESULT create_INetFwRules(INetFwRules **object)
|
|
{
|
|
fw_rules *rules;
|
|
|
|
TRACE("(%p)\n", object);
|
|
|
|
rules = malloc( sizeof(*rules) );
|
|
if (!rules) return E_OUTOFMEMORY;
|
|
|
|
rules->INetFwRules_iface.lpVtbl = &fw_rules_vtbl;
|
|
rules->refs = 1;
|
|
|
|
*object = &rules->INetFwRules_iface;
|
|
|
|
TRACE("returning iface %p\n", *object);
|
|
return S_OK;
|
|
}
|
|
|
|
static ULONG WINAPI fw_policy_AddRef(
|
|
INetFwPolicy *iface )
|
|
{
|
|
fw_policy *fw_policy = impl_from_INetFwPolicy( iface );
|
|
return InterlockedIncrement( &fw_policy->refs );
|
|
}
|
|
|
|
static ULONG WINAPI fw_policy_Release(
|
|
INetFwPolicy *iface )
|
|
{
|
|
fw_policy *fw_policy = impl_from_INetFwPolicy( iface );
|
|
LONG refs = InterlockedDecrement( &fw_policy->refs );
|
|
if (!refs)
|
|
{
|
|
TRACE("destroying %p\n", fw_policy);
|
|
free( fw_policy );
|
|
}
|
|
return refs;
|
|
}
|
|
|
|
static HRESULT WINAPI fw_policy_QueryInterface(
|
|
INetFwPolicy *iface,
|
|
REFIID riid,
|
|
void **ppvObject )
|
|
{
|
|
fw_policy *This = impl_from_INetFwPolicy( iface );
|
|
|
|
TRACE("%p %s %p\n", This, debugstr_guid( riid ), ppvObject );
|
|
|
|
if ( IsEqualGUID( riid, &IID_INetFwPolicy ) ||
|
|
IsEqualGUID( riid, &IID_IDispatch ) ||
|
|
IsEqualGUID( riid, &IID_IUnknown ) )
|
|
{
|
|
*ppvObject = iface;
|
|
}
|
|
else
|
|
{
|
|
FIXME("interface %s not implemented\n", debugstr_guid(riid));
|
|
return E_NOINTERFACE;
|
|
}
|
|
INetFwPolicy_AddRef( iface );
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI fw_policy_GetTypeInfoCount(
|
|
INetFwPolicy *iface,
|
|
UINT *pctinfo )
|
|
{
|
|
fw_policy *This = impl_from_INetFwPolicy( iface );
|
|
|
|
TRACE("%p %p\n", This, pctinfo);
|
|
*pctinfo = 1;
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI fw_policy_GetTypeInfo(
|
|
INetFwPolicy *iface,
|
|
UINT iTInfo,
|
|
LCID lcid,
|
|
ITypeInfo **ppTInfo )
|
|
{
|
|
fw_policy *This = impl_from_INetFwPolicy( iface );
|
|
|
|
TRACE("%p %u %lu %p\n", This, iTInfo, lcid, ppTInfo);
|
|
return get_typeinfo( INetFwPolicy_tid, ppTInfo );
|
|
}
|
|
|
|
static HRESULT WINAPI fw_policy_GetIDsOfNames(
|
|
INetFwPolicy *iface,
|
|
REFIID riid,
|
|
LPOLESTR *rgszNames,
|
|
UINT cNames,
|
|
LCID lcid,
|
|
DISPID *rgDispId )
|
|
{
|
|
fw_policy *This = impl_from_INetFwPolicy( iface );
|
|
ITypeInfo *typeinfo;
|
|
HRESULT hr;
|
|
|
|
TRACE("%p %s %p %u %lu %p\n", This, debugstr_guid(riid), rgszNames, cNames, lcid, rgDispId);
|
|
|
|
hr = get_typeinfo( INetFwPolicy_tid, &typeinfo );
|
|
if (SUCCEEDED(hr))
|
|
{
|
|
hr = ITypeInfo_GetIDsOfNames( typeinfo, rgszNames, cNames, rgDispId );
|
|
ITypeInfo_Release( typeinfo );
|
|
}
|
|
return hr;
|
|
}
|
|
|
|
static HRESULT WINAPI fw_policy_Invoke(
|
|
INetFwPolicy *iface,
|
|
DISPID dispIdMember,
|
|
REFIID riid,
|
|
LCID lcid,
|
|
WORD wFlags,
|
|
DISPPARAMS *pDispParams,
|
|
VARIANT *pVarResult,
|
|
EXCEPINFO *pExcepInfo,
|
|
UINT *puArgErr )
|
|
{
|
|
fw_policy *This = impl_from_INetFwPolicy( iface );
|
|
ITypeInfo *typeinfo;
|
|
HRESULT hr;
|
|
|
|
TRACE("%p %ld %s %ld %d %p %p %p %p\n", This, dispIdMember, debugstr_guid(riid),
|
|
lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
|
|
|
|
hr = get_typeinfo( INetFwPolicy_tid, &typeinfo );
|
|
if (SUCCEEDED(hr))
|
|
{
|
|
hr = ITypeInfo_Invoke( typeinfo, &This->INetFwPolicy_iface, dispIdMember,
|
|
wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr );
|
|
ITypeInfo_Release( typeinfo );
|
|
}
|
|
return hr;
|
|
}
|
|
|
|
static HRESULT WINAPI fw_policy_get_CurrentProfile(
|
|
INetFwPolicy *iface,
|
|
INetFwProfile **profile )
|
|
{
|
|
fw_policy *This = impl_from_INetFwPolicy( iface );
|
|
|
|
TRACE("%p, %p\n", This, profile);
|
|
return NetFwProfile_create( NULL, (void **)profile );
|
|
}
|
|
|
|
static HRESULT WINAPI fw_policy_GetProfileByType(
|
|
INetFwPolicy *iface,
|
|
NET_FW_PROFILE_TYPE profileType,
|
|
INetFwProfile **profile )
|
|
{
|
|
fw_policy *This = impl_from_INetFwPolicy( iface );
|
|
|
|
FIXME("%p, %u, %p\n", This, profileType, profile);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static const struct INetFwPolicyVtbl fw_policy_vtbl =
|
|
{
|
|
fw_policy_QueryInterface,
|
|
fw_policy_AddRef,
|
|
fw_policy_Release,
|
|
fw_policy_GetTypeInfoCount,
|
|
fw_policy_GetTypeInfo,
|
|
fw_policy_GetIDsOfNames,
|
|
fw_policy_Invoke,
|
|
fw_policy_get_CurrentProfile,
|
|
fw_policy_GetProfileByType
|
|
};
|
|
|
|
HRESULT NetFwPolicy_create( IUnknown *pUnkOuter, LPVOID *ppObj )
|
|
{
|
|
fw_policy *fp;
|
|
|
|
TRACE("(%p,%p)\n", pUnkOuter, ppObj);
|
|
|
|
fp = malloc( sizeof(*fp) );
|
|
if (!fp) return E_OUTOFMEMORY;
|
|
|
|
fp->INetFwPolicy_iface.lpVtbl = &fw_policy_vtbl;
|
|
fp->refs = 1;
|
|
|
|
*ppObj = &fp->INetFwPolicy_iface;
|
|
|
|
TRACE("returning iface %p\n", *ppObj);
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_QueryInterface(INetFwPolicy2 *iface, REFIID riid, void **out)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
TRACE("%p %s %p\n", This, debugstr_guid( riid ), out );
|
|
|
|
if ( IsEqualGUID( riid, &IID_INetFwPolicy2 ) ||
|
|
IsEqualGUID( riid, &IID_IDispatch ) ||
|
|
IsEqualGUID( riid, &IID_IUnknown ) )
|
|
{
|
|
*out = iface;
|
|
}
|
|
else if( IsEqualGUID( riid, &IID_INetFwRules ) )
|
|
{
|
|
TRACE("INetFwRules not supported\n");
|
|
return E_NOINTERFACE;
|
|
}
|
|
else
|
|
{
|
|
FIXME("interface %s not implemented\n", debugstr_guid(riid));
|
|
return E_NOINTERFACE;
|
|
}
|
|
INetFwPolicy2_AddRef( iface );
|
|
return S_OK;
|
|
}
|
|
|
|
static ULONG WINAPI fwpolicy2_AddRef(INetFwPolicy2 *iface)
|
|
{
|
|
fw_policy2 *fw_policy = impl_from_INetFwPolicy2( iface );
|
|
return InterlockedIncrement( &fw_policy->refs );
|
|
}
|
|
|
|
static ULONG WINAPI fwpolicy2_Release(INetFwPolicy2 *iface)
|
|
{
|
|
fw_policy2 *fw_policy = impl_from_INetFwPolicy2( iface );
|
|
LONG refs = InterlockedDecrement( &fw_policy->refs );
|
|
if (!refs)
|
|
{
|
|
INetFwRules_Release(fw_policy->fw_policy2_rules);
|
|
TRACE("destroying %p\n", fw_policy);
|
|
free( fw_policy );
|
|
}
|
|
return refs;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_GetTypeInfoCount(INetFwPolicy2 *iface, UINT *pctinfo)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
TRACE("%p %p\n", This, pctinfo);
|
|
*pctinfo = 1;
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_GetTypeInfo(INetFwPolicy2 *iface, UINT iTInfo, LCID lcid, ITypeInfo **info)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
TRACE("%p %u %lu %p\n", This, iTInfo, lcid, info);
|
|
return get_typeinfo( INetFwPolicy2_tid, info );
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_GetIDsOfNames(INetFwPolicy2 *iface, REFIID riid, LPOLESTR *rgszNames,
|
|
UINT cNames, LCID lcid, DISPID *rgDispId)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
ITypeInfo *typeinfo;
|
|
HRESULT hr;
|
|
|
|
TRACE("%p %s %p %u %lu %p\n", This, debugstr_guid(riid), rgszNames, cNames, lcid, rgDispId);
|
|
|
|
hr = get_typeinfo( INetFwPolicy2_tid, &typeinfo );
|
|
if (SUCCEEDED(hr))
|
|
{
|
|
hr = ITypeInfo_GetIDsOfNames( typeinfo, rgszNames, cNames, rgDispId );
|
|
ITypeInfo_Release( typeinfo );
|
|
}
|
|
return hr;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_Invoke(INetFwPolicy2 *iface, DISPID dispIdMember, REFIID riid, LCID lcid,
|
|
WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
ITypeInfo *typeinfo;
|
|
HRESULT hr;
|
|
|
|
TRACE("%p %ld %s %ld %d %p %p %p %p\n", This, dispIdMember, debugstr_guid(riid),
|
|
lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
|
|
|
|
hr = get_typeinfo( INetFwPolicy2_tid, &typeinfo );
|
|
if (SUCCEEDED(hr))
|
|
{
|
|
hr = ITypeInfo_Invoke( typeinfo, &This->INetFwPolicy2_iface, dispIdMember,
|
|
wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr );
|
|
ITypeInfo_Release( typeinfo );
|
|
}
|
|
return hr;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_get_CurrentProfileTypes(INetFwPolicy2 *iface, LONG *profile)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
FIXME("%p %p\n", This, profile);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_get_FirewallEnabled(INetFwPolicy2 *iface, NET_FW_PROFILE_TYPE2 profileType, VARIANT_BOOL *enabled)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
FIXME("%p %d %p\n", This, profileType, enabled);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_put_FirewallEnabled(INetFwPolicy2 *iface, NET_FW_PROFILE_TYPE2 profileType, VARIANT_BOOL enabled)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
FIXME("%p %d %d\n", This, profileType, enabled);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_get_ExcludedInterfaces(INetFwPolicy2 *iface, NET_FW_PROFILE_TYPE2 profileType, VARIANT *interfaces)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
FIXME("%p %d %p\n", This, profileType, interfaces);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_put_ExcludedInterfaces(INetFwPolicy2 *iface, NET_FW_PROFILE_TYPE2 profileType, VARIANT interfaces)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
FIXME("%p %d\n", This, profileType);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_get_BlockAllInboundTraffic(INetFwPolicy2 *iface, NET_FW_PROFILE_TYPE2 profileType, VARIANT_BOOL *block)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
FIXME("%p %d %p\n", This, profileType, block);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_put_BlockAllInboundTraffic(INetFwPolicy2 *iface, NET_FW_PROFILE_TYPE2 profileType, VARIANT_BOOL block)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
FIXME("%p %d %d\n", This, profileType, block);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_get_NotificationsDisabled(INetFwPolicy2 *iface, NET_FW_PROFILE_TYPE2 profileType, VARIANT_BOOL *disabled)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
FIXME("%p %d %p\n", This, profileType, disabled);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_put_NotificationsDisabled(INetFwPolicy2 *iface, NET_FW_PROFILE_TYPE2 profileType, VARIANT_BOOL disabled)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
FIXME("%p %d %d\n", This, profileType, disabled);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_get_UnicastResponsesToMulticastBroadcastDisabled(INetFwPolicy2 *iface, NET_FW_PROFILE_TYPE2 profileType, VARIANT_BOOL *disabled)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
FIXME("%p %d %p\n", This, profileType, disabled);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_put_UnicastResponsesToMulticastBroadcastDisabled(INetFwPolicy2 *iface, NET_FW_PROFILE_TYPE2 profileType, VARIANT_BOOL disabled)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
FIXME("%p %d %d\n", This, profileType, disabled);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_get_Rules(INetFwPolicy2 *iface, INetFwRules **rules)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
TRACE("%p %p\n", This, rules);
|
|
|
|
if(!rules)
|
|
return E_POINTER;
|
|
|
|
*rules = This->fw_policy2_rules;
|
|
INetFwRules_AddRef(This->fw_policy2_rules);
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_get_ServiceRestriction(INetFwPolicy2 *iface, INetFwServiceRestriction **ServiceRestriction)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
FIXME("%p %p\n", This, ServiceRestriction);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_EnableRuleGroup(INetFwPolicy2 *iface, LONG bitmask, BSTR group, VARIANT_BOOL enable)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
FIXME("%p %ld %s %d\n", This, bitmask, debugstr_w(group), enable);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_IsRuleGroupEnabled(INetFwPolicy2 *iface, LONG bitmask, BSTR group, VARIANT_BOOL *enabled)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
FIXME("%p %ld %s %p\n", This, bitmask, debugstr_w(group), enabled);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_RestoreLocalFirewallDefaults(INetFwPolicy2 *iface)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
FIXME("%p\n", This);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_get_DefaultInboundAction(INetFwPolicy2 *iface, NET_FW_PROFILE_TYPE2 profileType, NET_FW_ACTION *action)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
FIXME("%p %d %p\n", This, profileType, action);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_put_DefaultInboundAction(INetFwPolicy2 *iface, NET_FW_PROFILE_TYPE2 profileType, NET_FW_ACTION action)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
FIXME("%p %d %d\n", This, profileType, action);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_get_DefaultOutboundAction(INetFwPolicy2 *iface, NET_FW_PROFILE_TYPE2 profileType, NET_FW_ACTION *action)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
FIXME("%p %d %p\n", This, profileType, action);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_put_DefaultOutboundAction(INetFwPolicy2 *iface, NET_FW_PROFILE_TYPE2 profileType, NET_FW_ACTION action)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
FIXME("%p %d %d\n", This, profileType, action);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_get_IsRuleGroupCurrentlyEnabled(INetFwPolicy2 *iface, BSTR group, VARIANT_BOOL *enabled)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
FIXME("%p %s %p\n", This, debugstr_w(group), enabled);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI fwpolicy2_get_LocalPolicyModifyState(INetFwPolicy2 *iface, NET_FW_MODIFY_STATE *modifyState)
|
|
{
|
|
fw_policy2 *This = impl_from_INetFwPolicy2( iface );
|
|
|
|
FIXME("%p %p\n", This, modifyState);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static const struct INetFwPolicy2Vtbl fw_policy2_vtbl =
|
|
{
|
|
fwpolicy2_QueryInterface,
|
|
fwpolicy2_AddRef,
|
|
fwpolicy2_Release,
|
|
fwpolicy2_GetTypeInfoCount,
|
|
fwpolicy2_GetTypeInfo,
|
|
fwpolicy2_GetIDsOfNames,
|
|
fwpolicy2_Invoke,
|
|
fwpolicy2_get_CurrentProfileTypes,
|
|
fwpolicy2_get_FirewallEnabled,
|
|
fwpolicy2_put_FirewallEnabled,
|
|
fwpolicy2_get_ExcludedInterfaces,
|
|
fwpolicy2_put_ExcludedInterfaces,
|
|
fwpolicy2_get_BlockAllInboundTraffic,
|
|
fwpolicy2_put_BlockAllInboundTraffic,
|
|
fwpolicy2_get_NotificationsDisabled,
|
|
fwpolicy2_put_NotificationsDisabled,
|
|
fwpolicy2_get_UnicastResponsesToMulticastBroadcastDisabled,
|
|
fwpolicy2_put_UnicastResponsesToMulticastBroadcastDisabled,
|
|
fwpolicy2_get_Rules,
|
|
fwpolicy2_get_ServiceRestriction,
|
|
fwpolicy2_EnableRuleGroup,
|
|
fwpolicy2_IsRuleGroupEnabled,
|
|
fwpolicy2_RestoreLocalFirewallDefaults,
|
|
fwpolicy2_get_DefaultInboundAction,
|
|
fwpolicy2_put_DefaultInboundAction,
|
|
fwpolicy2_get_DefaultOutboundAction,
|
|
fwpolicy2_put_DefaultOutboundAction,
|
|
fwpolicy2_get_IsRuleGroupCurrentlyEnabled,
|
|
fwpolicy2_get_LocalPolicyModifyState
|
|
};
|
|
|
|
HRESULT NetFwPolicy2_create( IUnknown *outer, void **obj )
|
|
{
|
|
fw_policy2 *fp;
|
|
|
|
TRACE("(%p,%p)\n", outer, obj);
|
|
|
|
fp = malloc( sizeof(*fp) );
|
|
if (!fp) return E_OUTOFMEMORY;
|
|
|
|
fp->INetFwPolicy2_iface.lpVtbl = &fw_policy2_vtbl;
|
|
fp->refs = 1;
|
|
|
|
*obj = &fp->INetFwPolicy2_iface;
|
|
|
|
if (FAILED(create_INetFwRules(&fp->fw_policy2_rules)))
|
|
{
|
|
free( fp );
|
|
return E_OUTOFMEMORY;
|
|
}
|
|
|
|
TRACE("returning iface %p\n", *obj);
|
|
return S_OK;
|
|
}
|