2 Unix SMB/CIFS implementation.
3 Samba utility functions
4 Copyright (C) Andrew Bartlett 2011
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "librpc/gen_ndr/server_id.h"
23 bool server_id_same_process(const struct server_id
*p1
,
24 const struct server_id
*p2
)
26 return ((p1
->pid
== p2
->pid
) && (p1
->vnn
== p2
->vnn
));
29 bool server_id_equal(const struct server_id
*p1
, const struct server_id
*p2
)
31 if (!server_id_same_process(p1
, p2
)) {
35 if (p1
->task_id
!= p2
->task_id
) {
39 if (p1
->unique_id
!= p2
->unique_id
) {
46 char *server_id_str_buf(struct server_id id
, struct server_id_buf
*dst
)
48 if (server_id_is_disconnected(&id
)) {
49 strlcpy(dst
->buf
, "disconnected", sizeof(dst
->buf
));
50 } else if ((id
.vnn
== NONCLUSTER_VNN
) && (id
.task_id
== 0)) {
51 snprintf(dst
->buf
, sizeof(dst
->buf
), "%llu",
52 (unsigned long long)id
.pid
);
53 } else if (id
.vnn
== NONCLUSTER_VNN
) {
54 snprintf(dst
->buf
, sizeof(dst
->buf
), "%llu.%u",
55 (unsigned long long)id
.pid
, (unsigned)id
.task_id
);
56 } else if (id
.task_id
== 0) {
57 snprintf(dst
->buf
, sizeof(dst
->buf
), "%u:%llu",
58 (unsigned)id
.vnn
, (unsigned long long)id
.pid
);
60 snprintf(dst
->buf
, sizeof(dst
->buf
), "%u:%llu.%u",
62 (unsigned long long)id
.pid
,
63 (unsigned)id
.task_id
);
68 struct server_id
server_id_from_string(uint32_t local_vnn
,
69 const char *pid_string
)
71 struct server_id result
;
72 unsigned long long pid
;
73 unsigned int vnn
, task_id
= 0;
78 * We accept various forms with 1, 2 or 3 component forms
79 * because the server_id_str_buf() can print different forms, and
80 * we want backwards compatibility for scripts that may call
83 if (sscanf(pid_string
, "%u:%llu.%u", &vnn
, &pid
, &task_id
) == 3) {
86 result
.task_id
= task_id
;
87 } else if (sscanf(pid_string
, "%u:%llu", &vnn
, &pid
) == 2) {
90 } else if (sscanf(pid_string
, "%llu.%u", &pid
, &task_id
) == 2) {
91 result
.vnn
= local_vnn
;
93 result
.task_id
= task_id
;
94 } else if (sscanf(pid_string
, "%llu", &pid
) == 1) {
95 result
.vnn
= local_vnn
;
97 } else if (strcmp(pid_string
, "disconnected") ==0) {
98 server_id_set_disconnected(&result
);
100 result
.vnn
= NONCLUSTER_VNN
;
101 result
.pid
= UINT64_MAX
;
107 * Set the serverid to the special value that represents a disconnected
108 * client for (e.g.) durable handles.
110 void server_id_set_disconnected(struct server_id
*id
)
112 SMB_ASSERT(id
!= NULL
);
114 id
->pid
= UINT64_MAX
;
115 id
->task_id
= UINT32_MAX
;
116 id
->vnn
= NONCLUSTER_VNN
;
117 id
->unique_id
= SERVERID_UNIQUE_ID_NOT_TO_VERIFY
;
123 * check whether a serverid is the special placeholder for
124 * a disconnected client
126 bool server_id_is_disconnected(const struct server_id
*id
)
128 struct server_id dis
;
130 SMB_ASSERT(id
!= NULL
);
132 server_id_set_disconnected(&dis
);
134 return server_id_equal(id
, &dis
);
137 void server_id_put(uint8_t buf
[24], const struct server_id id
)
139 SBVAL(buf
, 0, id
.pid
);
140 SIVAL(buf
, 8, id
.task_id
);
141 SIVAL(buf
, 12, id
.vnn
);
142 SBVAL(buf
, 16, id
.unique_id
);
145 void server_id_get(struct server_id
*id
, const uint8_t buf
[24])
147 id
->pid
= BVAL(buf
, 0);
148 id
->task_id
= IVAL(buf
, 8);
149 id
->vnn
= IVAL(buf
, 12);
150 id
->unique_id
= BVAL(buf
, 16);