public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* DOS namespaces, accessible/walk-able as Admin via Cygwin?
@ 2024-04-19 23:09 Dan Shelton
  2024-04-20  3:37 ` Brian Inglis
  0 siblings, 1 reply; 7+ messages in thread
From: Dan Shelton @ 2024-04-19 23:09 UTC (permalink / raw)
  To: cygwin

Hello!

1. Windows has DOS namespaces per user, or per Logon. Can anyone
explain this from a Win32 API point of view how they are kept
separate?
2. If I have Administrator rights, is there a way in /proc where I can
/bin/ls -la  or /bin/find -ls all those DOS namespaces and soft links
to the real devices?

Dan
-- 
Dan Shelton - Cluster Specialist Win/Lin/Bsd

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: DOS namespaces, accessible/walk-able as Admin via Cygwin?
  2024-04-19 23:09 DOS namespaces, accessible/walk-able as Admin via Cygwin? Dan Shelton
@ 2024-04-20  3:37 ` Brian Inglis
  2024-04-21 23:24   ` Dan Shelton
  0 siblings, 1 reply; 7+ messages in thread
From: Brian Inglis @ 2024-04-20  3:37 UTC (permalink / raw)
  To: cygwin

On 2024-04-19 17:09, Dan Shelton via Cygwin wrote:
> 1. Windows has DOS namespaces per user, or per Logon. 
> Can anyone explain this from a Win32 API point of view how they are kept 
> separate?

Ask on SuperUser *NOT* SO!

> 2. If I have Administrator rights, is there a way in /proc where I can
> /bin/ls -la  or /bin/find -ls all those DOS namespaces and soft links
> to the real devices?

Cygwin exposes these MS Windows Executive Object Manager subsystem resource 
objects under /proc/sys/ and object namespaces are per session under 
/proc/sys/Sessions/ you have e.g.

$ ls -glo /proc/sys/Sessions/BNOLINKS/
total 0
lr--r--r-- 1 0 Apr 19 21:23 0 -> /proc/sys/BaseNamedObjects
lr--r--r-- 1 0 Apr 19 21:23 1 -> /proc/sys/Sessions/1/BaseNamedObjects

so each session has its own set of BaseNamedObjects, which you can list with 
appropriate permissions, or using a tree browser.

Under MS Windows you can use Sysinternals WinObj64 to browse the hierarchy and 
objects.

-- 
Take care. Thanks, Brian Inglis              Calgary, Alberta, Canada

La perfection est atteinte                   Perfection is achieved
non pas lorsqu'il n'y a plus rien à ajouter  not when there is no more to add
mais lorsqu'il n'y a plus rien à retirer     but when there is no more to cut
                                 -- Antoine de Saint-Exupéry

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: DOS namespaces, accessible/walk-able as Admin via Cygwin?
  2024-04-20  3:37 ` Brian Inglis
@ 2024-04-21 23:24   ` Dan Shelton
  2024-04-22  0:02     ` Bill Stewart
  2024-04-22  5:01     ` Brian Inglis
  0 siblings, 2 replies; 7+ messages in thread
From: Dan Shelton @ 2024-04-21 23:24 UTC (permalink / raw)
  To: cygwin

On Sat, 20 Apr 2024 at 05:37, Brian Inglis via Cygwin <cygwin@cygwin.com> wrote:
>
> On 2024-04-19 17:09, Dan Shelton via Cygwin wrote:
> > 1. Windows has DOS namespaces per user, or per Logon.
> > Can anyone explain this from a Win32 API point of view how they are kept
> > separate?
>
> Ask on SuperUser *NOT* SO!

I cannot follow you. What should I do?

>
> > 2. If I have Administrator rights, is there a way in /proc where I can
> > /bin/ls -la  or /bin/find -ls all those DOS namespaces and soft links
> > to the real devices?
>
> Cygwin exposes these MS Windows Executive Object Manager subsystem resource
> objects under /proc/sys/ and object namespaces are per session under
> /proc/sys/Sessions/ you have e.g.

*THANKS*

>
> $ ls -glo /proc/sys/Sessions/BNOLINKS/
> total 0
> lr--r--r-- 1 0 Apr 19 21:23 0 -> /proc/sys/BaseNamedObjects
> lr--r--r-- 1 0 Apr 19 21:23 1 -> /proc/sys/Sessions/1/BaseNamedObjects
>
> so each session has its own set of BaseNamedObjects, which you can list with
> appropriate permissions, or using a tree browser.

Thanks.

Now where does the "1" in /proc/sys/Sessions/1/BaseNamedObjects come
from? Is there a Cygwin or Win32 API for that?

> Under MS Windows you can use Sysinternals WinObj64 to browse the hierarchy and
> objects.

What is that?

Dan
-- 
Dan Shelton - Cluster Specialist Win/Lin/Bsd

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: DOS namespaces, accessible/walk-able as Admin via Cygwin?
  2024-04-21 23:24   ` Dan Shelton
@ 2024-04-22  0:02     ` Bill Stewart
  2024-04-22  5:01     ` Brian Inglis
  1 sibling, 0 replies; 7+ messages in thread
From: Bill Stewart @ 2024-04-22  0:02 UTC (permalink / raw)
  To: cygwin

[-- Attachment #1: Type: text/plain, Size: 375 bytes --]

On Sun, Apr 21, 2024 at 5:25 PM Dan Shelton wrote:

On Sat, 20 Apr 2024 at 05:37, Brian Inglis via Cygwin <cygwin@cygwin.com>
> wrote:
> > Under MS Windows you can use Sysinternals WinObj64 to browse the
> hierarchy and
> > objects.
>
> What is that?
>

Perhaps search for "winobj64" ?

https://devblogs.microsoft.com/oldnewthing/20080613-00/?p=21963

Bill

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: DOS namespaces, accessible/walk-able as Admin via Cygwin?
  2024-04-21 23:24   ` Dan Shelton
  2024-04-22  0:02     ` Bill Stewart
@ 2024-04-22  5:01     ` Brian Inglis
  2024-04-26  1:45       ` Dan Shelton
  1 sibling, 1 reply; 7+ messages in thread
From: Brian Inglis @ 2024-04-22  5:01 UTC (permalink / raw)
  To: cygwin

On 2024-04-21 17:24, Dan Shelton via Cygwin wrote:
> On Sat, 20 Apr 2024 at 05:37, Brian Inglis via Cygwin <cygwin@cygwin.com> wrote:
>>
>> On 2024-04-19 17:09, Dan Shelton via Cygwin wrote:
>>> 1. Windows has DOS namespaces per user, or per Logon.
>>> Can anyone explain this from a Win32 API point of view how they are kept
>>> separate?
>>
>> Ask on SuperUser *NOT* SO!
> 
> I cannot follow you. What should I do?

You asked the same question on StackOverflow group and was told that was not the 
appropriate group - SuperUser is the appropriate StackOverflow group.

>>> 2. If I have Administrator rights, is there a way in /proc where I can
>>> /bin/ls -la  or /bin/find -ls all those DOS namespaces and soft links
>>> to the real devices?
>>
>> Cygwin exposes these MS Windows Executive Object Manager subsystem resource
>> objects under /proc/sys/ and object namespaces are per session under
>> /proc/sys/Sessions/ you have e.g.

>> $ ls -glo /proc/sys/Sessions/BNOLINKS/
>> total 0
>> lr--r--r-- 1 0 Apr 19 21:23 0 -> /proc/sys/BaseNamedObjects
>> lr--r--r-- 1 0 Apr 19 21:23 1 -> /proc/sys/Sessions/1/BaseNamedObjects
>>
>> so each session has its own set of BaseNamedObjects, which you can list with
>> appropriate permissions, or using a tree browser.

> Now where does the "1" in /proc/sys/Sessions/1/BaseNamedObjects come
> from? Is there a Cygwin or Win32 API for that?

It's the MS Windows session number for the first user session.
You can access them using Cygwin or MS Windows directory lookups or tree 
browsers, as I said.
Search microsoft.com for Windows sessions for details about MS Windows APIs.

>> Under MS Windows you can use Sysinternals WinObj64 to browse the hierarchy and
>> objects.
> 
> What is that?

If you do not yet know that, perhaps you should not yet be digging into these MS 
Windows Executive subsystem objects.

Some of these questions seem very abstract - are these academic questions or 
projects?

-- 
Take care. Thanks, Brian Inglis              Calgary, Alberta, Canada

La perfection est atteinte                   Perfection is achieved
non pas lorsqu'il n'y a plus rien à ajouter  not when there is no more to add
mais lorsqu'il n'y a plus rien à retirer     but when there is no more to cut
                                 -- Antoine de Saint-Exupéry


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: DOS namespaces, accessible/walk-able as Admin via Cygwin?
  2024-04-22  5:01     ` Brian Inglis
@ 2024-04-26  1:45       ` Dan Shelton
  2024-04-26  5:23         ` Brian Inglis
  0 siblings, 1 reply; 7+ messages in thread
From: Dan Shelton @ 2024-04-26  1:45 UTC (permalink / raw)
  To: cygwin

On Mon, 22 Apr 2024 at 07:01, Brian Inglis via Cygwin <cygwin@cygwin.com> wrote:
>
> On 2024-04-21 17:24, Dan Shelton via Cygwin wrote:
> > On Sat, 20 Apr 2024 at 05:37, Brian Inglis via Cygwin <cygwin@cygwin.com> wrote:
> >>> 2. If I have Administrator rights, is there a way in /proc where I can
> >>> /bin/ls -la  or /bin/find -ls all those DOS namespaces and soft links
> >>> to the real devices?
> >>
> >> Cygwin exposes these MS Windows Executive Object Manager subsystem resource
> >> objects under /proc/sys/ and object namespaces are per session under
> >> /proc/sys/Sessions/ you have e.g.
>
> >> $ ls -glo /proc/sys/Sessions/BNOLINKS/
> >> total 0
> >> lr--r--r-- 1 0 Apr 19 21:23 0 -> /proc/sys/BaseNamedObjects
> >> lr--r--r-- 1 0 Apr 19 21:23 1 -> /proc/sys/Sessions/1/BaseNamedObjects
> >>
> >> so each session has its own set of BaseNamedObjects, which you can list with
> >> appropriate permissions, or using a tree browser.
>
> > Now where does the "1" in /proc/sys/Sessions/1/BaseNamedObjects come
> > from? Is there a Cygwin or Win32 API for that?
>
> It's the MS Windows session number for the first user session.
> You can access them using Cygwin or MS Windows directory lookups or tree
> browsers, as I said.
> Search microsoft.com for Windows sessions for details about MS Windows APIs.

Windows has multiple session apis (terminal, logon, ...), which is
used for the DOS namespace?

> >> Under MS Windows you can use Sysinternals WinObj64 to browse the hierarchy and
> >> objects.
> >
> > What is that?
>
> If you do not yet know that, perhaps you should not yet be digging into these MS
> Windows Executive subsystem objects.
>
> Some of these questions seem very abstract - are these academic questions or
> projects?

Building knowledge, learning, and debugging actual code.

Dan
-- 
Dan Shelton - Cluster Specialist Win/Lin/Bsd

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: DOS namespaces, accessible/walk-able as Admin via Cygwin?
  2024-04-26  1:45       ` Dan Shelton
@ 2024-04-26  5:23         ` Brian Inglis
  0 siblings, 0 replies; 7+ messages in thread
From: Brian Inglis @ 2024-04-26  5:23 UTC (permalink / raw)
  To: cygwin

On 2024-04-25 19:45, Dan Shelton via Cygwin wrote:
> On Mon, 22 Apr 2024 at 07:01, Brian Inglis via Cygwin wrote:
>> On 2024-04-21 17:24, Dan Shelton via Cygwin wrote:
>>> On Sat, 20 Apr 2024 at 05:37, Brian Inglis via Cygwin wrote:
>>>>> 2. If I have Administrator rights, is there a way in /proc where I can
>>>>> /bin/ls -la  or /bin/find -ls all those DOS namespaces and soft links
>>>>> to the real devices?
>>>>
>>>> Cygwin exposes these MS Windows Executive Object Manager subsystem resource
>>>> objects under /proc/sys/ and object namespaces are per session under
>>>> /proc/sys/Sessions/ you have e.g.
>>
>>>> $ ls -glo /proc/sys/Sessions/BNOLINKS/
>>>> total 0
>>>> lr--r--r-- 1 0 Apr 19 21:23 0 -> /proc/sys/BaseNamedObjects
>>>> lr--r--r-- 1 0 Apr 19 21:23 1 -> /proc/sys/Sessions/1/BaseNamedObjects
>>>>
>>>> so each session has its own set of BaseNamedObjects, which you can list with
>>>> appropriate permissions, or using a tree browser.
>>
>>> Now where does the "1" in /proc/sys/Sessions/1/BaseNamedObjects come
>>> from? Is there a Cygwin or Win32 API for that?
>>
>> It's the MS Windows session number for the first user session.
>> You can access them using Cygwin or MS Windows directory lookups or tree
>> browsers, as I said.
>> Search microsoft.com for Windows sessions for details about MS Windows APIs.
> 
> Windows has multiple session apis (terminal, logon, ...), which is
> used for the DOS namespace?

There really does not appear to be a "DOS" namespace, rather there are a bunch 
of legacy object names in the namespaces which may be used by console and GUI 
programs to access and operate on the underlying objects, possibly also using 
legacy APIs.

>>>> Under MS Windows you can use Sysinternals WinObj64 to browse the hierarchy and
>>>> objects.
>>>
>>> What is that?
>>
>> If you do not yet know that, perhaps you should not yet be digging into these MS
>> Windows Executive subsystem objects.
>>
>> Some of these questions seem very abstract - are these academic questions or
>> projects?
> 
> Building knowledge, learning, and debugging actual code.

Have a look at the object hierarchies either using a Cygwin tree browser or the 
winobj64 object browser to see what is actually out there and their properties.

The Cygwin all-volunteer spare time project's interest is in using newlib libc 
and Windows APIs to provide Unix functionality, to relevant POSIX standards if 
available and appropriate.

For anything else you should consult the available project documentation in the 
cygwin-doc package or online, in the newlib-cygwin/winsup/cygwin C++ source code 
providing the emulation, any MS Windows documentation that the vendor cares to 
make available, and perhaps other MS Windows emulation based open source 
projects like Wine, mingw64, msys2, etc.

-- 
Take care. Thanks, Brian Inglis              Calgary, Alberta, Canada

La perfection est atteinte                   Perfection is achieved
non pas lorsqu'il n'y a plus rien à ajouter  not when there is no more to add
mais lorsqu'il n'y a plus rien à retirer     but when there is no more to cut
                                 -- Antoine de Saint-Exupéry

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-04-26  5:23 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-19 23:09 DOS namespaces, accessible/walk-able as Admin via Cygwin? Dan Shelton
2024-04-20  3:37 ` Brian Inglis
2024-04-21 23:24   ` Dan Shelton
2024-04-22  0:02     ` Bill Stewart
2024-04-22  5:01     ` Brian Inglis
2024-04-26  1:45       ` Dan Shelton
2024-04-26  5:23         ` Brian Inglis

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).