1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715
|
/*
Unix SMB/CIFS implementation.
Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007
Copyright (C) Matthias Dieter Wallnöfer 2009
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "lib/replace/system/python.h"
#include "pyerrors.h"
#include "python/py3compat.h"
#include "includes.h"
#include "python/modules.h"
#include "version.h"
#include "param/pyparam.h"
#include "lib/socket/netif.h"
#include "lib/util/debug.h"
#include "lib/util/util_crypt.h"
#include "librpc/ndr/ndr_private.h"
#include "lib/cmdline/cmdline.h"
#include "lib/crypto/gkdi.h"
static PyObject *py_generate_random_str(PyObject *self, PyObject *args)
{
Py_ssize_t len;
PyObject *ret;
char *retstr;
if (!PyArg_ParseTuple(args, "n", &len)) {
return NULL;
}
if (len < 0) {
PyErr_Format(PyExc_ValueError,
"random string length should be positive, not %zd",
len);
return NULL;
}
retstr = generate_random_str(NULL, len);
if (retstr == NULL) {
return PyErr_NoMemory();
}
ret = PyUnicode_FromStringAndSize(retstr, len);
talloc_free(retstr);
return ret;
}
static PyObject *py_generate_random_password(PyObject *self, PyObject *args)
{
Py_ssize_t min, max;
PyObject *ret;
char *retstr;
if (!PyArg_ParseTuple(args, "nn", &min, &max)) {
return NULL;
}
if (max < 0 || min < 0) {
/*
* The real range checks happens in generate_random_password().
* Here just filter out any negative numbers.
*/
PyErr_Format(PyExc_ValueError,
"invalid range: %zd - %zd",
min, max);
return NULL;
}
retstr = generate_random_password(NULL, min, max);
if (retstr == NULL) {
if (errno == EINVAL) {
return PyErr_Format(PyExc_ValueError,
"invalid range: %zd - %zd",
min, max);
}
return PyErr_NoMemory();
}
ret = PyUnicode_FromString(retstr);
talloc_free(retstr);
return ret;
}
static PyObject *py_generate_random_machine_password(PyObject *self, PyObject *args)
{
Py_ssize_t min, max;
PyObject *ret;
char *retstr;
if (!PyArg_ParseTuple(args, "nn", &min, &max)) {
return NULL;
}
if (max < 0 || min < 0) {
/*
* The real range checks happens in
* generate_random_machine_password().
* Here we just filter out any negative numbers.
*/
PyErr_Format(PyExc_ValueError,
"invalid range: %zd - %zd",
min, max);
return NULL;
}
retstr = generate_random_machine_password(NULL, min, max);
if (retstr == NULL) {
if (errno == EINVAL) {
return PyErr_Format(PyExc_ValueError,
"invalid range: %zd - %zd",
min, max);
}
return PyErr_NoMemory();
}
ret = PyUnicode_FromString(retstr);
talloc_free(retstr);
return ret;
}
static PyObject *py_check_password_quality(PyObject *self, PyObject *args)
{
char *pass;
if (!PyArg_ParseTuple(args, "s", &pass)) {
return NULL;
}
return PyBool_FromLong(check_password_quality(pass));
}
static PyObject *py_generate_random_bytes(PyObject *self, PyObject *args)
{
Py_ssize_t len;
PyObject *ret;
uint8_t *bytes = NULL;
if (!PyArg_ParseTuple(args, "n", &len)) {
return NULL;
}
if (len < 0) {
PyErr_Format(PyExc_ValueError,
"random bytes length should be positive, not %zd",
len);
return NULL;
}
bytes = talloc_zero_size(NULL, len);
if (bytes == NULL) {
PyErr_NoMemory();
return NULL;
}
generate_random_buffer(bytes, len);
ret = PyBytes_FromStringAndSize((const char *)bytes, len);
talloc_free(bytes);
return ret;
}
static PyObject *py_unix2nttime(PyObject *self, PyObject *args)
{
time_t t;
unsigned int _t;
NTTIME nt;
if (!PyArg_ParseTuple(args, "I", &_t)) {
return NULL;
}
t = _t;
unix_to_nt_time(&nt, t);
return PyLong_FromLongLong((uint64_t)nt);
}
static PyObject *py_nttime2unix(PyObject *self, PyObject *args)
{
time_t t;
NTTIME nt;
if (!PyArg_ParseTuple(args, "K", &nt))
return NULL;
t = nt_time_to_unix(nt);
return PyLong_FromLong((uint64_t)t);
}
static PyObject *py_float2nttime(PyObject *self, PyObject *args)
{
double ft = 0;
double ft_sec = 0;
double ft_nsec = 0;
struct timespec ts;
NTTIME nt = 0;
if (!PyArg_ParseTuple(args, "d", &ft)) {
return NULL;
}
ft_sec = (double)(int)ft;
ft_nsec = (ft - ft_sec) * 1.0e+9;
ts.tv_sec = (int)ft_sec;
ts.tv_nsec = (int)ft_nsec;
nt = full_timespec_to_nt_time(&ts);
return PyLong_FromLongLong((uint64_t)nt);
}
static PyObject *py_nttime2float(PyObject *self, PyObject *args)
{
double ft = 0;
struct timespec ts;
const struct timespec ts_zero = { .tv_sec = 0, };
NTTIME nt = 0;
if (!PyArg_ParseTuple(args, "K", &nt)) {
return NULL;
}
ts = nt_time_to_full_timespec(nt);
if (is_omit_timespec(&ts)) {
return PyFloat_FromDouble(1.0);
}
ft = timespec_elapsed2(&ts_zero, &ts);
return PyFloat_FromDouble(ft);
}
static PyObject *py_nttime2string(PyObject *self, PyObject *args)
{
PyObject *ret;
NTTIME nt;
TALLOC_CTX *tmp_ctx;
const char *string;
if (!PyArg_ParseTuple(args, "K", &nt))
return NULL;
tmp_ctx = talloc_new(NULL);
if (tmp_ctx == NULL) {
PyErr_NoMemory();
return NULL;
}
string = nt_time_string(tmp_ctx, nt);
ret = PyUnicode_FromString(string);
talloc_free(tmp_ctx);
return ret;
}
static PyObject *py_set_debug_level(PyObject *self, PyObject *args)
{
unsigned level;
if (!PyArg_ParseTuple(args, "I", &level))
return NULL;
debuglevel_set(level);
Py_RETURN_NONE;
}
static PyObject *py_get_debug_level(PyObject *self,
PyObject *Py_UNUSED(ignored))
{
return PyLong_FromLong(debuglevel_get());
}
static PyObject *py_fault_setup(PyObject *self,
PyObject *Py_UNUSED(ignored))
{
static bool done;
if (!done) {
fault_setup();
done = true;
}
Py_RETURN_NONE;
}
static PyObject *py_is_ntvfs_fileserver_built(PyObject *self,
PyObject *Py_UNUSED(ignored))
{
#ifdef WITH_NTVFS_FILESERVER
Py_RETURN_TRUE;
#else
Py_RETURN_FALSE;
#endif
}
static PyObject *py_is_heimdal_built(PyObject *self,
PyObject *Py_UNUSED(ignored))
{
#ifdef SAMBA4_USES_HEIMDAL
Py_RETURN_TRUE;
#else
Py_RETURN_FALSE;
#endif
}
static PyObject *py_is_ad_dc_built(PyObject *self,
PyObject *Py_UNUSED(ignored))
{
#ifdef AD_DC_BUILD_IS_ENABLED
Py_RETURN_TRUE;
#else
Py_RETURN_FALSE;
#endif
}
static PyObject *py_is_rust_built(PyObject *self,
PyObject *Py_UNUSED(ignored))
{
#ifdef HAVE_RUST
Py_RETURN_TRUE;
#else
Py_RETURN_FALSE;
#endif
}
static PyObject *py_is_selftest_enabled(PyObject *self,
PyObject *Py_UNUSED(ignored))
{
#ifdef ENABLE_SELFTEST
Py_RETURN_TRUE;
#else
Py_RETURN_FALSE;
#endif
}
static PyObject *py_ndr_token_max_list_size(PyObject *self,
PyObject *Py_UNUSED(ignored))
{
return PyLong_FromLong(ndr_token_max_list_size());
}
/*
return the list of interface IPs we have configured
takes an loadparm context, returns a list of IPs in string form
Does not return addresses on 127.0.0.0/8
*/
static PyObject *py_interface_ips(PyObject *self, PyObject *args)
{
PyObject *pylist;
int count;
TALLOC_CTX *tmp_ctx;
PyObject *py_lp_ctx;
struct loadparm_context *lp_ctx;
struct interface *ifaces;
int i, ifcount;
int all_interfaces = 1;
if (!PyArg_ParseTuple(args, "O|i", &py_lp_ctx, &all_interfaces))
return NULL;
tmp_ctx = talloc_new(NULL);
if (tmp_ctx == NULL) {
PyErr_NoMemory();
return NULL;
}
lp_ctx = lpcfg_from_py_object(tmp_ctx, py_lp_ctx);
if (lp_ctx == NULL) {
talloc_free(tmp_ctx);
return PyErr_NoMemory();
}
load_interface_list(tmp_ctx, lp_ctx, &ifaces);
count = iface_list_count(ifaces);
/* first count how many are not loopback addresses */
for (ifcount = i = 0; i<count; i++) {
const char *ip = iface_list_n_ip(ifaces, i);
if (all_interfaces) {
ifcount++;
continue;
}
if (iface_list_same_net(ip, "127.0.0.1", "255.0.0.0")) {
continue;
}
if (iface_list_same_net(ip, "169.254.0.0", "255.255.0.0")) {
continue;
}
if (iface_list_same_net(ip, "::1", "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff")) {
continue;
}
if (iface_list_same_net(ip, "fe80::", "ffff:ffff:ffff:ffff::")) {
continue;
}
ifcount++;
}
pylist = PyList_New(ifcount);
for (ifcount = i = 0; i<count; i++) {
const char *ip = iface_list_n_ip(ifaces, i);
if (all_interfaces) {
PyList_SetItem(pylist, ifcount, PyUnicode_FromString(ip));
ifcount++;
continue;
}
if (iface_list_same_net(ip, "127.0.0.1", "255.0.0.0")) {
continue;
}
if (iface_list_same_net(ip, "169.254.0.0", "255.255.0.0")) {
continue;
}
if (iface_list_same_net(ip, "::1", "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff")) {
continue;
}
if (iface_list_same_net(ip, "fe80::", "ffff:ffff:ffff:ffff::")) {
continue;
}
PyList_SetItem(pylist, ifcount, PyUnicode_FromString(ip));
ifcount++;
}
talloc_free(tmp_ctx);
return pylist;
}
static PyObject *py_strcasecmp_m(PyObject *self, PyObject *args)
{
char *s1 = NULL;
char *s2 = NULL;
long cmp_result = 0;
if (!PyArg_ParseTuple(args, PYARG_STR_UNI
PYARG_STR_UNI,
"utf8", &s1, "utf8", &s2)) {
return NULL;
}
cmp_result = strcasecmp_m(s1, s2);
PyMem_Free(s1);
PyMem_Free(s2);
return PyLong_FromLong(cmp_result);
}
static PyObject *py_strstr_m(PyObject *self, PyObject *args)
{
char *s1 = NULL;
char *s2 = NULL;
char *strstr_ret = NULL;
PyObject *result = NULL;
if (!PyArg_ParseTuple(args, PYARG_STR_UNI
PYARG_STR_UNI,
"utf8", &s1, "utf8", &s2))
return NULL;
strstr_ret = strstr_m(s1, s2);
if (!strstr_ret) {
PyMem_Free(s1);
PyMem_Free(s2);
Py_RETURN_NONE;
}
result = PyUnicode_FromString(strstr_ret);
PyMem_Free(s1);
PyMem_Free(s2);
return result;
}
static PyObject *py_get_burnt_commandline(PyObject *self, PyObject *args)
{
PyObject *cmdline_as_list, *ret;
char *burnt_cmdline = NULL;
Py_ssize_t i, argc;
char **argv = NULL;
TALLOC_CTX *frame = talloc_stackframe();
bool burnt;
if (!PyArg_ParseTuple(args, "O!", &PyList_Type, &cmdline_as_list))
{
TALLOC_FREE(frame);
return NULL;
}
argc = PyList_GET_SIZE(cmdline_as_list);
if (argc == 0) {
TALLOC_FREE(frame);
Py_RETURN_NONE;
}
argv = PyList_AsStringList(frame, cmdline_as_list, "sys.argv");
if (argv == NULL) {
TALLOC_FREE(frame);
return NULL;
}
burnt = samba_cmdline_burn(argc, argv);
if (!burnt) {
TALLOC_FREE(frame);
Py_RETURN_NONE;
}
for (i = 0; i < argc; i++) {
if (i == 0) {
burnt_cmdline = talloc_strdup(frame,
argv[i]);
} else {
burnt_cmdline
= talloc_asprintf_append(burnt_cmdline,
" %s",
argv[i]);
}
if (burnt_cmdline == NULL) {
PyErr_NoMemory();
TALLOC_FREE(frame);
return NULL;
}
}
ret = PyUnicode_FromString(burnt_cmdline);
TALLOC_FREE(frame);
return ret;
}
static PyObject *py_crypt(PyObject *self, PyObject *args)
{
PyObject *py_hash = NULL;
char *phrase = NULL;
char *setting = NULL;
TALLOC_CTX *frame = NULL;
int ret;
DATA_BLOB hash = {};
if (!PyArg_ParseTuple(args, "ss", &phrase, &setting)) {
TALLOC_FREE(frame);
return NULL;
}
frame = talloc_stackframe();
ret = talloc_crypt_blob(frame, phrase, setting, &hash);
if (ret != 0) {
const char *errstr = talloc_crypt_errstring(frame, ret);
if (ret == EINVAL || ret == ERANGE || ret == ENOTRECOVERABLE) {
PyErr_Format(PyExc_ValueError,
"could not crypt(): %s",
errstr);
} else {
PyErr_Format(PyExc_OSError,
"could not crypt(): %s",
errstr);
}
TALLOC_FREE(frame);
return NULL;
}
py_hash = PyUnicode_FromStringAndSize((char *)hash.data, hash.length);
TALLOC_FREE(frame);
return py_hash;
}
static PyMethodDef py_misc_methods[] = {
{ "generate_random_str", (PyCFunction)py_generate_random_str, METH_VARARGS,
"generate_random_str(len) -> string\n"
"Generate random string with specified length." },
{ "generate_random_password", (PyCFunction)py_generate_random_password,
METH_VARARGS, "generate_random_password(min, max) -> string\n"
"Generate random password (based on printable ascii characters) "
"with a length >= min and <= max." },
{ "generate_random_machine_password", (PyCFunction)py_generate_random_machine_password,
METH_VARARGS, "generate_random_machine_password(min, max) -> string\n"
"Generate random password "
"(based on random utf16 characters converted to utf8 or "
"random ascii characters if 'unix charset' is not 'utf8') "
"with a length >= min (at least 14) and <= max (at most 255)." },
{ "check_password_quality", (PyCFunction)py_check_password_quality,
METH_VARARGS, "check_password_quality(pass) -> bool\n"
"Check password quality against Samba's check_password_quality, "
"the implementation of Microsoft's rules: "
"http://msdn.microsoft.com/en-us/subscriptions/cc786468%28v=ws.10%29.aspx"
},
{ "unix2nttime", (PyCFunction)py_unix2nttime, METH_VARARGS,
"unix2nttime(timestamp) -> nttime" },
{ "nttime2unix", (PyCFunction)py_nttime2unix, METH_VARARGS,
"nttime2unix(nttime) -> timestamp" },
{ "float2nttime", (PyCFunction)py_float2nttime, METH_VARARGS,
"pytime2nttime(floattimestamp) -> nttime" },
{ "nttime2float", (PyCFunction)py_nttime2float, METH_VARARGS,
"nttime2pytime(nttime) -> floattimestamp" },
{ "nttime2string", (PyCFunction)py_nttime2string, METH_VARARGS,
"nttime2string(nttime) -> string" },
{ "set_debug_level", (PyCFunction)py_set_debug_level, METH_VARARGS,
"set debug level" },
{ "get_debug_level", (PyCFunction)py_get_debug_level, METH_NOARGS,
"get debug level" },
{ "fault_setup", (PyCFunction)py_fault_setup, METH_NOARGS,
"setup the default samba panic handler" },
{ "interface_ips", (PyCFunction)py_interface_ips, METH_VARARGS,
"interface_ips(lp_ctx[, all_interfaces) -> list_of_ifaces\n"
"\n"
"get interface IP address list"},
{ "strcasecmp_m", (PyCFunction)py_strcasecmp_m, METH_VARARGS,
"(for testing) compare two strings using Samba's strcasecmp_m()"},
{ "strstr_m", (PyCFunction)py_strstr_m, METH_VARARGS,
"(for testing) find one string in another with Samba's strstr_m()"},
{ "is_ntvfs_fileserver_built", (PyCFunction)py_is_ntvfs_fileserver_built, METH_NOARGS,
"is the NTVFS file server built in this installation?" },
{ "is_heimdal_built", (PyCFunction)py_is_heimdal_built, METH_NOARGS,
"is Samba built with Heimdal Kerberos?" },
{ "generate_random_bytes",
(PyCFunction)py_generate_random_bytes,
METH_VARARGS,
"generate_random_bytes(len) -> bytes\n"
"Generate random bytes with specified length." },
{ "is_ad_dc_built", (PyCFunction)py_is_ad_dc_built, METH_NOARGS,
"is Samba built with AD DC?" },
{ "is_selftest_enabled", (PyCFunction)py_is_selftest_enabled,
METH_NOARGS, "is Samba built with selftest enabled?" },
{ "ndr_token_max_list_size", (PyCFunction)py_ndr_token_max_list_size,
METH_NOARGS, "How many NDR internal tokens is too many for this build?" },
{ "get_burnt_commandline", (PyCFunction)py_get_burnt_commandline,
METH_VARARGS, "Return a redacted commandline to feed to setproctitle (None if no redaction required)" },
{ "crypt", (PyCFunction)py_crypt,
METH_VARARGS,
"encrypt as phrase, per crypt(3), as determined by setting." },
{ "is_rust_built", (PyCFunction)py_is_rust_built, METH_NOARGS,
"is Samba built with Rust?" },
{0}
};
static struct PyModuleDef moduledef = {
PyModuleDef_HEAD_INIT,
.m_name = "_glue",
.m_doc = "Python bindings for miscellaneous Samba functions.",
.m_size = -1,
.m_methods = py_misc_methods,
};
MODULE_INIT_FUNC(_glue)
{
PyObject *m;
PyObject *py_obj = NULL;
int ret;
debug_setup_talloc_log();
m = PyModule_Create(&moduledef);
if (m == NULL)
return NULL;
PyModule_AddObject(m, "version",
PyUnicode_FromString(SAMBA_VERSION_STRING));
py_obj = PyErr_NewException("samba.NTSTATUSError", PyExc_RuntimeError, NULL);
if (py_obj != NULL) {
PyModule_AddObject(m, "NTSTATUSError", py_obj);
}
py_obj = PyErr_NewException("samba.WERRORError", PyExc_RuntimeError, NULL);
if (py_obj != NULL) {
PyModule_AddObject(m, "WERRORError", py_obj);
}
py_obj = PyErr_NewException("samba.HRESULTError", PyExc_RuntimeError, NULL);
if (py_obj != NULL) {
PyModule_AddObject(m, "HRESULTError", py_obj);
}
py_obj = PyErr_NewException("samba.DsExtendedError", PyExc_RuntimeError, NULL);
if (py_obj != NULL) {
PyModule_AddObject(m, "DsExtendedError", py_obj);
}
ret = PyModule_AddIntConstant(m, "GKDI_L1_KEY_ITERATION", gkdi_l1_key_iteration);
if (ret) {
Py_DECREF(m);
return NULL;
}
ret = PyModule_AddIntConstant(m, "GKDI_L2_KEY_ITERATION", gkdi_l2_key_iteration);
if (ret) {
Py_DECREF(m);
return NULL;
}
py_obj = PyLong_FromLongLong(gkdi_key_cycle_duration);
if (py_obj == NULL) {
Py_DECREF(m);
return NULL;
}
ret = PyModule_AddObject(m, "GKDI_KEY_CYCLE_DURATION", py_obj);
if (ret) {
Py_DECREF(py_obj);
Py_DECREF(m);
return NULL;
}
py_obj = PyLong_FromLongLong(gkdi_max_clock_skew);
if (py_obj == NULL) {
Py_DECREF(m);
return NULL;
}
ret = PyModule_AddObject(m, "GKDI_MAX_CLOCK_SKEW", py_obj);
if (ret) {
Py_DECREF(py_obj);
Py_DECREF(m);
return NULL;
}
return m;
}
|