Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 304919
b: refs/heads/master
c: dfe78ad
h: refs/heads/master
i:
  304917: a2d0507
  304915: e979f67
  304911: 5b4ab88
v: v3
  • Loading branch information
Namhyung Kim authored and Arnaldo Carvalho de Melo committed May 7, 2012
1 parent 6ff5f54 commit d38823f
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 40 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 60bbddaaa33865633efa2800702e3b02495a0e94
refs/heads/master: dfe78adaaca90417ece98edbd3eb1c9661334406
4 changes: 1 addition & 3 deletions trunk/tools/perf/builtin-record.c
Original file line number Diff line number Diff line change
Expand Up @@ -886,9 +886,7 @@ int cmd_record(int argc, const char **argv, const char *prefix __used)

perf_target__validate(&rec->opts.target);

rec->opts.target.uid = parse_target_uid(rec->opts.target.uid_str);
if (rec->opts.target.uid_str != NULL &&
rec->opts.target.uid == UINT_MAX - 1)
if (perf_target__parse_uid(&rec->opts.target) < 0)
goto out_free_fd;

if (perf_evlist__create_maps(evsel_list, &rec->opts.target) < 0)
Expand Down
3 changes: 1 addition & 2 deletions trunk/tools/perf/builtin-top.c
Original file line number Diff line number Diff line change
Expand Up @@ -1254,8 +1254,7 @@ int cmd_top(int argc, const char **argv, const char *prefix __used)

perf_target__validate(&top.target);

top.target.uid = parse_target_uid(top.target.uid_str);
if (top.target.uid_str != NULL && top.target.uid == UINT_MAX - 1)
if (perf_target__parse_uid(&top.target) < 0)
goto out_delete_evlist;

if (top.target.tid == 0 && top.target.pid == 0 &&
Expand Down
35 changes: 35 additions & 0 deletions trunk/tools/perf/util/target.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
#include "target.h"
#include "debug.h"

#include <pwd.h>


enum perf_target_errno perf_target__validate(struct perf_target *target)
{
Expand Down Expand Up @@ -54,3 +56,36 @@ enum perf_target_errno perf_target__validate(struct perf_target *target)

return ret;
}

enum perf_target_errno perf_target__parse_uid(struct perf_target *target)
{
struct passwd pwd, *result;
char buf[1024];
const char *str = target->uid_str;

target->uid = UINT_MAX;
if (str == NULL)
return PERF_ERRNO_TARGET__SUCCESS;

/* Try user name first */
getpwnam_r(str, &pwd, buf, sizeof(buf), &result);

if (result == NULL) {
/*
* The user name not found. Maybe it's a UID number.
*/
char *endptr;
int uid = strtol(str, &endptr, 10);

if (*endptr != '\0')
return PERF_ERRNO_TARGET__INVALID_UID;

getpwuid_r(uid, &pwd, buf, sizeof(buf), &result);

if (result == NULL)
return PERF_ERRNO_TARGET__USER_NOT_FOUND;
}

target->uid = result->pw_uid;
return PERF_ERRNO_TARGET__SUCCESS;
}
5 changes: 5 additions & 0 deletions trunk/tools/perf/util/target.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,14 @@ enum perf_target_errno {
PERF_ERRNO_TARGET__PID_OVERRIDE_SYSTEM,
PERF_ERRNO_TARGET__UID_OVERRIDE_SYSTEM,

/* for perf_target__parse_uid() */
PERF_ERRNO_TARGET__INVALID_UID,
PERF_ERRNO_TARGET__USER_NOT_FOUND,

__PERF_ERRNO_TARGET__END,
};

enum perf_target_errno perf_target__validate(struct perf_target *target);
enum perf_target_errno perf_target__parse_uid(struct perf_target *target);

#endif /* _PERF_TARGET_H */
31 changes: 0 additions & 31 deletions trunk/tools/perf/util/usage.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,34 +82,3 @@ void warning(const char *warn, ...)
warn_routine(warn, params);
va_end(params);
}

uid_t parse_target_uid(const char *str)
{
struct passwd pwd, *result;
char buf[1024];

if (str == NULL)
return UINT_MAX;

getpwnam_r(str, &pwd, buf, sizeof(buf), &result);

if (result == NULL) {
char *endptr;
int uid = strtol(str, &endptr, 10);

if (*endptr != '\0') {
ui__error("Invalid user %s\n", str);
return UINT_MAX - 1;
}

getpwuid_r(uid, &pwd, buf, sizeof(buf), &result);

if (result == NULL) {
ui__error("Problems obtaining information for user %s\n",
str);
return UINT_MAX - 1;
}
}

return result->pw_uid;
}
3 changes: 0 additions & 3 deletions trunk/tools/perf/util/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@
#include <netinet/tcp.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <pwd.h>
#include <inttypes.h>
#include "../../../include/linux/magic.h"
#include "types.h"
Expand Down Expand Up @@ -249,8 +248,6 @@ struct perf_event_attr;

void event_attr_init(struct perf_event_attr *attr);

uid_t parse_target_uid(const char *str);

#define _STR(x) #x
#define STR(x) _STR(x)

Expand Down

0 comments on commit d38823f

Please sign in to comment.