473,750 Members | 2,571 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

get current user name?

How do I retrieve the username of the currently logged in user? I
basically to check if the user is logged in as root and if not, exit
the program.

I though about using the LOGNAME environment variable, but if a regular
user used su root, the environment variable still has the user's login
name.

Nov 15 '05 #1
18 5213
dj*********@sno wboard.com wrote:
How do I retrieve the username of the currently logged in user? I
basically to check if the user is logged in as root and if not, exit
the program.

I though about using the LOGNAME environment variable, but if a regular
user used su root, the environment variable still has the user's login
name.


This is not a C question, try comp.unix.progr ammer.

Robert Gamble

Nov 15 '05 #2
Sorry, I thought there might be an easy C function that accomplishes
this, but I haven't been able to find one yet.

Nov 15 '05 #3
dj*********@sno wboard.com wrote:
How do I retrieve the username of the currently logged in user? I
basically to check if the user is logged in as root and if not, exit
the program.

I though about using the LOGNAME environment variable, but if a regular
user used su root, the environment variable still has the user's login
name.


There is no standard way in C. Your best bet is to ask in
a newsgroup(s) associated with your platform(s) of choice,
such as comp.unix.progr ammer.

<OT> If you can assume POSIX, look at whether
getpwuid and getuid do what you want. But
discussion on them should be in
comp.unix.progr ammer </OT>

-David

Nov 15 '05 #4
<dj*********@sn owboard.com> wrote:
Sorry, I thought there might be an easy C function that accomplishes
this, but I haven't been able to find one yet.


There isn't.
Nov 15 '05 #5
dj*********@sno wboard.com wrote:
How do I retrieve the username of the currently logged in user? I
basically to check if the user is logged in as root and if not, exit
the program.
You call GetUserName, which is declared in <winbase.h>.. .
I though about using the LOGNAME environment variable, but if a regular
user used su root,


....oops.

Richard
Nov 15 '05 #6
On Fri, 19 Aug 2005 06:33:21 GMT, rl*@hoekstra-uitgeverij.nl (Richard
Bos) wrote:
dj*********@sn owboard.com wrote:
How do I retrieve the username of the currently logged in user? I
basically to check if the user is logged in as root and if not, exit
the program.
You call GetUserName, which is declared in <winbase.h>.. .


Odd - I can't seem to find either the function or the include file
mentioned in the C standard, or even the POSIX standard. Are you sure
you're in the right newsgroup?
I though about using the LOGNAME environment variable, but if a regular
user used su root,


...oops.

Richard

--
Al Balmer
Balmer Consulting
re************* ***********@att .net
Nov 15 '05 #7

"Alan Balmer" <al******@att.n et> wrote in message
news:d5******** *************** *********@4ax.c om...
On Fri, 19 Aug 2005 06:33:21 GMT, rl*@hoekstra-uitgeverij.nl (Richard
Bos) wrote:
dj*********@s nowboard.com wrote:
How do I retrieve the username of the currently logged in user? I
basically to check if the user is logged in as root and if not, exit
the program.
You call GetUserName, which is declared in <winbase.h>.. .


Odd - I can't seem to find either the function or the include file
mentioned in the C standard, or even the POSIX standard.


Why are you mentioning the POSIX standard? This is comp.lang.c
where we deal strictly with the ISO/IEC international standard.
Are you sure you're in the right newsgroup?

Exactly, that was his point... couldn't you tell by the 'oops' :-)

I though about using the LOGNAME environment variable, but if a regular
user used su root,


...oops.

Richard

--
Al Balmer
Balmer Consulting
re************* ***********@att .net

Nov 15 '05 #8
Eric wrote:

<dj*********@sn owboard.com> wrote:
Sorry, I thought there might be an easy C function that accomplishes
this, but I haven't been able to find one yet.


There isn't.


However, if his O/S has the concept of "user name", then there is probably
an O/S call which returns it, and it is probably callable from C by means
of a platform-specific library call. If he were to ask a platform-specific
newsgroup, he should be able to get an answer there. Since he never said
what O/S he was on, he'll have to figure that part out himself. (Though,
given some of his terminology, my guess is comp.unix.progr ammer may be the
place for him.)

--
+-------------------------+--------------------+-----------------------------+
| Kenneth J. Brody | www.hvcomputer.com | |
| kenbrody/at\spamcop.net | www.fptech.com | #include <std_disclaimer .h> |
+-------------------------+--------------------+-----------------------------+
Don't e-mail me at: <mailto:Th***** ********@gmail. com>
Nov 15 '05 #9
Richard Bos wrote:

dj*********@sno wboard.com wrote:
How do I retrieve the username of the currently logged in user? I
basically to check if the user is logged in as root and if not, exit
the program.


You call GetUserName, which is declared in <winbase.h>.. .


# gcc foo.c
foo.c:1: winbase.h: No such file or directory
#
[...remove unknown "winbase.h" include...]
# gcc foo.c
foo.o: In function `main':
foo.o(.text+0x7 ): undefined reference to `GetUserName'
collect2: ld returned 1 exit status
#
I though about using the LOGNAME environment variable, but if a regular
user used su root,


...oops.


Which is why platform-specific answers don't work here. :-)

--
+-------------------------+--------------------+-----------------------------+
| Kenneth J. Brody | www.hvcomputer.com | |
| kenbrody/at\spamcop.net | www.fptech.com | #include <std_disclaimer .h> |
+-------------------------+--------------------+-----------------------------+
Don't e-mail me at: <mailto:Th***** ********@gmail. com>
Nov 15 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
2040
by: Andy Wells | last post by:
I'm using VB.NET and I have an application that binds a schema to the main form's controls, and the user has the ability to load an XML file through the schema and into the bound form. My problem is this: the schema contains an element called "TRENDED" and it has an attribute called "type" whose value can be "previous" or "current". This element can occur twice in the XML, once with the attribute-value "previous" and a second time with...
2
3047
by: Jesper Stocholm | last post by:
I have implemented role-based security within my ASP.Net application. However, it seems the role is not passed to the authentication ticket I create. I want to use it to display/hide some content based on the user's role. I wrote this to do it: if (HttpContext.Current.User.Identity.IsAuthenticated) { plLoggedIn.Visible = true;
4
17801
by: Dan Bart | last post by:
I am using an application which is a modification of IBuySpy Portal. It is using Forms authentication. Users login and their name is added to Context Then I use: Web.HttpContext.Current.User.Identity.Name to write audit trail as to what users do. Now recently on one of the activities I noticed that the
10
17123
by: kiran_s_rao | last post by:
I have a serious issue that seems to be intermittent with User.Identity.Name. In an environment where about 100+ users are logging on to a site with forms authentication, calling HttpContext.Current.User.Identity.Name returns the correctly logged on user. However, 10% of the time (I'm guessing under stress conditions or simulataneous requests), the wrong user info is being returned.
8
4902
by: Mark White | last post by:
Hey everyone I'm having a great deal of problems finding this information through google and yahoo, so I turn to you on this. I have a Windows app running on XP. I am able to caputre the user's Name property in the WindowsPrincipal's IIdentity interface. Where can I find the role that the user is assigned for the current login? I only want the one role which is assigned for the current user, not all of
0
3843
by: D-Someone | last post by:
We have an active directory user that just had her username renamed. When the user is running an application that calls our CurrentUser web service method (which returns the value of HttpContext.Current.User.Identity.Name), her old username is returned. DOMAIN\oldusername instead of DOMAIN\newusername. The user is logged in with this new username and when we make a windows client .NET call to...
2
7104
by: Abraham Andres Luna | last post by:
hello everyone, does anyone know why i can't access the HttpContext.Current.User.Identity.Name property in a .cs file? this is the index.aspx page: <%@ Page Language="C#" %> <script runat="server"> void Page_Load(Object Sender, EventArgs E) {
4
10179
by: Doogie | last post by:
Hi, I am using HttpContext.Current.User.Identity.Name to get a user id from a web application. I then use that as part of a name of a cookie I'm writing. 30 minutes later I do a refresh of this page and try to access that cookie. However, because I am using HttpContext.Current.User.Identity.Name to get the user id to know what that cookie name even is, I am having problems because apparently after 30 minutes...
9
3003
by: Alex | last post by:
Get the Name and Phone Number of the Current Windows User in a .NET Application I am writing a simple .NET (C#) application. It needs to "automatic" get the Name (last, first) and phone number of the current Windows user. I guess the name can be retrieved from the environment -- After I click the Start button of Windows, my name is on the very first line of the popup menu. So, this information is provided by the Windows
0
4797
by: =?Utf-8?B?QW50b25pbyBPJydOZWFs?= | last post by:
We changed a username in AD. The user now logs on to a computer on our network using the new username without any problems. They can not logon using the old username. However, when they access a IIS 6.0 web site where a programmer compares system.web.httpcontext.current.user.identity.name to a lookup table containing usernames they could not gain access with the new userid. We created a web page to show what...
0
9001
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8838
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9396
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9342
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9256
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6808
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6081
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4716
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4888
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.