Displaying 7 results from an estimated 7 matches for "thornier".
2020 May 25
2
Question about smbc_stat() and smbc_statvfs() in libsmbclient
I?ve been writing some code that uses libsmbclient to talk to SMB servers and I?m a little bit confused why ?smbc_stat()? sets the
st_uid & st_gid to the uid & gid of the process calling it, instead of trying to map the real owner & group of the path or setting it to -1:-1 if it can?t do that...
But there is probably some good reason for this?
Ie, if I call something like this:
>
2008 Feb 27
1
xen: Make hvc0 the preferred console in domU
This makes the Xen console just work. Before, you had to ask for it
on the kernel command line with console=hvc0
Signed-off-by: Markus Armbruster <armbru at redhat.com>
---
diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c
index 49e5358..df63185 100644
--- a/arch/x86/xen/enlighten.c
+++ b/arch/x86/xen/enlighten.c
@@ -25,6 +25,7 @@
#include <linux/mm.h>
#include
2020 May 27
0
Question about smbc_stat() and smbc_statvfs() in libsmbclient
...lling it,
> instead of trying to map the real owner & group of the path or setting it to -1:-1 if it can?t do that...
>
> But there is probably some good reason for this?
That's really old code that was designed to talk
to SMB1 servers that might predate real identity.
This is a thornier problem than it looks.
smbc_stat() does one network call to get the file
info. For SMB2+ in order to convert the owner
information (which is in SID form) to a uid/gid
that has any meaning to the local filesystem you
have to do extra network calls/mapping, as you
describe below.
> Ie, if I call...
2016 Jan 19
2
[RFC] A proposal for byval in a world with opaque pointers
...iced opinions on prior threads/conversations on the
> subject)
>
> Firstly, thanks Eddy for doing a lot of work in the opaque pointer area -
> it's greatly appreciated. This is a particularly thorny part of it (or, at
> least I think so at the moment - sounds like you've seen thornier parts
> further down the trail).
>
> On Tue, Jan 19, 2016 at 2:47 PM, Eddy B. via llvm-dev
> <llvm-dev at lists.llvm.org> wrote:
>>
>> Hi,
>>
>> In the past months, several options have been presented for making byval
>> (and similar attributes, such...
2010 Oct 18
1
Setting up Samba4 - lots of implementation questions esp re. PKI and SSO
...and of course details of who could do
what and of the network structure), what about the KDC keys, where are they?
Anything else I've not thought of? Anyway, the short version of the question
is, how do I get all that stuff to install into /home so I can encrypt it
easily.
- For another rather thornier security question, and one I am leaning away
from bothering with, what about exposing kerberos to the WAN (the public
Internet) so that users can still do SSO to the VPN when off-lan? I presume
this is asking for trouble, and probably shouldn't even bother asking this,
at least not with alpha s...
2020 May 28
2
Question about smbc_stat() and smbc_statvfs() in libsmbclient
...to map the real owner & group of the path or setting it to -1:-1 if it can?t do that...
>>
>> But there is probably some good reason for this?
>
> That's really old code that was designed to talk
> to SMB1 servers that might predate real identity.
>
> This is a thornier problem than it looks.
>
> smbc_stat() does one network call to get the file
> info. For SMB2+ in order to convert the owner
> information (which is in SID form) to a uid/gid
> that has any meaning to the local filesystem you
> have to do extra network calls/mapping, as you
>...
2016 Jan 19
8
[RFC] A proposal for byval in a world with opaque pointers
Hi,
In the past months, several options have been presented for making byval
(and similar attributes, such as inalloca or sret) work with opaque pointers.
The main two I've seen were byval(T) and byval(N) where N is the size of T.
They both have their upsides and downsides, for example: byval(T) would be
a type-parametric attribute, which, AFAIK, does not already exist and may
complicate