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 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201
|
/*
* Copyright (C) 2006,2007 Justin Karneges
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA
*
*/
// Note: JDnsShared supports multiple interfaces for multicast, but only one
// for IPv4 and one for IPv6. Sharing multiple interfaces of the same IP
// version for multicast is unfortunately not possible without reworking
// the jdns subsystem.
//
// The reason for this limitation is that in order to do multi-interface
// multicast, you have to do a single bind to Any, and then use special
// functions to determine which interface a packet came from and to
// specify which interface a packet should go out on. Again this is just
// not possible with the current system and the assumptions made by jdns.
// Note: When quering against multiple interfaces with multicast, it is
// possible that different answers for a unique record may be reported
// on each interface. We don't do anything about this.
#include "jdnsshared.h"
namespace {
class SystemInfoCache
{
public:
QJDns::SystemInfo info;
QTime time;
};
}
Q_GLOBAL_STATIC(QMutex, jdnsshared_mutex)
Q_GLOBAL_STATIC(SystemInfoCache, jdnsshared_infocache)
static QJDns::SystemInfo get_sys_info()
{
QMutexLocker locker(jdnsshared_mutex());
SystemInfoCache *c = jdnsshared_infocache();
// cache info for 1/2 second, enough to prevent re-reading of sys
// info 20 times because of all the different resolves
if(c->time.isNull() || c->time.elapsed() >= 500)
{
c->info = QJDns::systemInfo();
c->time.start();
}
return c->info;
}
static bool domainCompare(const QByteArray &a, const QByteArray &b)
{
return (qstricmp(a.data(), b.data()) == 0) ? true: false;
}
// adapted from jdns_mdnsd.c, _a_match()
static bool matchRecordExceptTtl(const QJDns::Record &a, const QJDns::Record &b)
{
if(a.type != b.type || !domainCompare(a.owner, b.owner))
return false;
if(a.type == QJDns::Srv)
{
if(domainCompare(a.name, b.name)
&& a.port == b.port
&& a.priority == b.priority
&& a.weight == b.weight)
{
return true;
}
}
else if(a.type == QJDns::Ptr || a.type == QJDns::Ns || a.type == QJDns::Cname)
{
if(domainCompare(a.name, b.name))
return true;
}
else if(a.rdata == b.rdata)
return true;
return false;
}
//----------------------------------------------------------------------------
// Handle
//----------------------------------------------------------------------------
namespace {
// QJDns uses integer handle ids, but they are only unique within
// the relevant QJDns instance. Since we want our handles to be
// unique across all instances, we'll make an instance/id pair.
class Handle
{
public:
QJDns *jdns;
int id;
Handle() : jdns(0), id(-1)
{
}
Handle(QJDns *_jdns, int _id) : jdns(_jdns), id(_id)
{
}
bool operator==(const Handle &a) const
{
if(a.jdns == jdns && a.id == id)
return true;
return false;
}
bool operator!=(const Handle &a) const
{
return !(operator==(a));
}
};
}
inline uint qHash(const Handle &key)
{
return ((uint)key.jdns) ^ key.id;
}
//----------------------------------------------------------------------------
// JDnsShutdown
//----------------------------------------------------------------------------
namespace {
class JDnsShutdownAgent : public QObject
{
Q_OBJECT
public:
void start()
{
QMetaObject::invokeMethod(this, "started", Qt::QueuedConnection);
}
signals:
void started();
};
class JDnsShutdown : public QThread
{
Q_OBJECT
public:
QMutex m;
QWaitCondition w;
QList<JDnsShared*> list;
JDnsShutdownAgent *agent;
int phase;
void waitForShutdown(const QList<JDnsShared*> _list)
{
list = _list;
phase = 0;
m.lock();
start();
w.wait(&m);
foreach(JDnsShared *i, list)
{
i->setParent(0);
i->moveToThread(this);
}
phase = 1;
agent->start();
wait();
}
protected:
virtual void run()
{
m.lock();
agent = new JDnsShutdownAgent;
connect(agent, SIGNAL(started()), SLOT(agent_started()), Qt::DirectConnection);
agent->start();
exec();
delete agent;
}
private slots:
void agent_started()
{
if(phase == 0)
{
w.wakeOne();
m.unlock();
}
else
{
foreach(JDnsShared *i, list)
{
connect(i, SIGNAL(shutdownFinished()), SLOT(jdns_shutdownFinished()), Qt::DirectConnection);
i->shutdown();
}
}
}
void jdns_shutdownFinished()
{
JDnsShared *i = (JDnsShared *)sender();
delete i;
list.removeAll(i);
if(list.isEmpty())
quit();
}
};
}
//----------------------------------------------------------------------------
// JDnsSharedDebug
//----------------------------------------------------------------------------
class JDnsSharedDebugPrivate : public QObject
{
Q_OBJECT
public:
JDnsSharedDebug *q;
QMutex m;
QStringList lines;
bool dirty;
JDnsSharedDebugPrivate(JDnsSharedDebug *_q) : QObject(_q), q(_q)
{
dirty = false;
}
void addDebug(const QString &name, const QStringList &_lines)
{
if(!_lines.isEmpty())
{
QMutexLocker locker(&m);
for(int n = 0; n < _lines.count(); ++n)
lines += name + ": " + _lines[n];
if(!dirty)
{
dirty = true;
QMetaObject::invokeMethod(this, "doUpdate", Qt::QueuedConnection);
}
}
}
private slots:
void doUpdate()
{
{
QMutexLocker locker(&m);
if(!dirty)
return;
}
emit q->readyRead();
}
};
JDnsSharedDebug::JDnsSharedDebug(QObject *parent)
:QObject(parent)
{
d = new JDnsSharedDebugPrivate(this);
}
JDnsSharedDebug::~JDnsSharedDebug()
{
delete d;
}
QStringList JDnsSharedDebug::readDebugLines()
{
QMutexLocker locker(&d->m);
QStringList tmplines = d->lines;
d->lines.clear();
d->dirty = false;
return tmplines;
}
//----------------------------------------------------------------------------
// JDnsSharedRequest
//----------------------------------------------------------------------------
class JDnsSharedPrivate : public QObject
{
Q_OBJECT
public:
class Instance
{
public:
QJDns *jdns;
QHostAddress addr;
int index;
Instance() : jdns(0)
{
}
};
JDnsShared *q;
JDnsShared::Mode mode;
bool shutting_down;
JDnsSharedDebug *db;
QString dbname;
QList<Instance*> instances;
QHash<QJDns*,Instance*> instanceForQJDns;
QSet<JDnsSharedRequest*> requests;
QHash<Handle,JDnsSharedRequest*> requestForHandle;
JDnsSharedPrivate(JDnsShared *_q) : QObject(_q), q(_q)
{
}
JDnsSharedRequest *findRequest(QJDns *jdns, int id) const
{
Handle h(jdns, id);
return requestForHandle.value(h);
}
void jdns_link(QJDns *jdns)
{
connect(jdns, SIGNAL(resultsReady(int, const QJDns::Response &)), SLOT(jdns_resultsReady(int, const QJDns::Response &)));
connect(jdns, SIGNAL(published(int)), SLOT(jdns_published(int)));
connect(jdns, SIGNAL(error(int, QJDns::Error)), SLOT(jdns_error(int, QJDns::Error)));
connect(jdns, SIGNAL(shutdownFinished()), SLOT(jdns_shutdownFinished()));
connect(jdns, SIGNAL(debugLinesReady()), SLOT(jdns_debugLinesReady()));
}
int getNewIndex() const
{
// find lowest unused value
for(int n = 0;; ++n)
{
bool found = false;
foreach(Instance *i, instances)
{
if(i->index == n)
{
found = true;
break;
}
}
if(!found)
return n;
}
}
void addDebug(int index, const QString &line)
{
if(db)
db->d->addDebug(dbname + QString::number(index), QStringList() << line);
}
void doDebug(QJDns *jdns, int index)
{
QStringList lines = jdns->debugLines();
if(db)
db->d->addDebug(dbname + QString::number(index), lines);
}
QJDns::Record manipulateRecord(const QJDns::Record &in)
{
// Note: since our implementation only allows 1 ipv4 and 1 ipv6
// interface to exist, it is safe to publish both kinds of
// records on both interfaces, with the same values. For
// example, an A record can be published on both interfaces,
// with the value set to the ipv4 interface. If we supported
// multiple ipv4 interfaces, then this wouldn't work, because
// we wouldn't know which value to use for the A record when
// publishing on the ipv6 interface.
// publishing our own IP address? null address means the user
// wants us to fill in the blank with our address.
if((in.type == QJDns::Aaaa || in.type == QJDns::A) && in.address.isNull())
{
QJDns::Record out = in;
if(in.type == QJDns::Aaaa)
{
// are we operating on ipv6?
foreach(Instance *i, instances)
{
if(i->addr.protocol() == QAbstractSocket::IPv6Protocol)
{
out.address = i->addr;
break;
}
}
}
else // A
{
// are we operating on ipv4?
foreach(Instance *i, instances)
{
if(i->addr.protocol() == QAbstractSocket::IPv4Protocol)
{
out.address = i->addr;
break;
}
}
}
return out;
}
return in;
}
bool addInterface(const QHostAddress &addr);
void removeInterface(const QHostAddress &addr);
void queryStart(JDnsSharedRequest *obj, const QByteArray &name, int qType);
void queryCancel(JDnsSharedRequest *obj);
void publishStart(JDnsSharedRequest *obj, QJDns::PublishMode m, const QJDns::Record &record);
void publishUpdate(JDnsSharedRequest *obj, const QJDns::Record &record);
void publishCancel(JDnsSharedRequest *obj);
public slots:
void late_shutdown()
{
shutting_down = false;
emit q->shutdownFinished();
}
private slots:
void jdns_resultsReady(int id, const QJDns::Response &results);
void jdns_published(int id);
void jdns_error(int id, QJDns::Error e);
void jdns_shutdownFinished();
void jdns_debugLinesReady();
};
class JDnsSharedRequestPrivate : public QObject
{
Q_OBJECT
public:
JDnsSharedRequest *q;
JDnsSharedPrivate *jsp;
// current action
JDnsSharedRequest::Type type;
QByteArray name;
int qType;
QJDns::PublishMode pubmode;
QJDns::Record pubrecord;
// a single request might have to perform multiple QJDns operations
QList<Handle> handles;
// keep a list of handles that successfully publish
QList<Handle> published;
// use to weed out dups for multicast
QList<QJDns::Record> queryCache;
bool success;
JDnsSharedRequest::Error error;
QList<QJDns::Record> results;
QTimer lateTimer;
JDnsSharedRequestPrivate(JDnsSharedRequest *_q) : QObject(_q), q(_q), lateTimer(this)
{
connect(&lateTimer, SIGNAL(timeout()), SLOT(lateTimer_timeout()));
}
void resetSession()
{
name = QByteArray();
pubrecord = QJDns::Record();
handles.clear();
published.clear();
queryCache.clear();
}
private slots:
void lateTimer_timeout()
{
emit q->resultsReady();
}
};
JDnsSharedRequest::JDnsSharedRequest(JDnsShared *jdnsShared, QObject *parent)
:QObject(parent)
{
d = new JDnsSharedRequestPrivate(this);
d->jsp = jdnsShared->d;
}
JDnsSharedRequest::~JDnsSharedRequest()
{
cancel();
delete d;
}
JDnsSharedRequest::Type JDnsSharedRequest::type()
{
return d->type;
}
void JDnsSharedRequest::query(const QByteArray &name, int type)
{
cancel();
d->jsp->queryStart(this, name, type);
}
void JDnsSharedRequest::publish(QJDns::PublishMode m, const QJDns::Record &record)
{
cancel();
d->jsp->publishStart(this, m, record);
}
void JDnsSharedRequest::publishUpdate(const QJDns::Record &record)
{
// only allowed to update if we have an active publish
if(!d->handles.isEmpty() && d->type == Publish)
d->jsp->publishUpdate(this, record);
}
void JDnsSharedRequest::cancel()
{
d->lateTimer.stop();
if(!d->handles.isEmpty())
{
if(d->type == Query)
d->jsp->queryCancel(this);
else
d->jsp->publishCancel(this);
}
d->resetSession();
}
bool JDnsSharedRequest::success() const
{
return d->success;
}
JDnsSharedRequest::Error JDnsSharedRequest::error() const
{
return d->error;
}
QList<QJDns::Record> JDnsSharedRequest::results() const
{
return d->results;
}
//----------------------------------------------------------------------------
// JDnsShared
//----------------------------------------------------------------------------
JDnsShared::JDnsShared(Mode mode, QObject *parent)
:QObject(parent)
{
d = new JDnsSharedPrivate(this);
d->mode = mode;
d->shutting_down = false;
d->db = 0;
}
JDnsShared::~JDnsShared()
{
foreach(JDnsSharedPrivate::Instance *i, d->instances)
{
delete i->jdns;
delete i;
}
delete d;
}
void JDnsShared::setDebug(JDnsSharedDebug *db, const QString &name)
{
d->db = db;
d->dbname = name;
}
bool JDnsShared::addInterface(const QHostAddress &addr)
{
return d->addInterface(addr);
}
void JDnsShared::removeInterface(const QHostAddress &addr)
{
d->removeInterface(addr);
}
void JDnsShared::shutdown()
{
d->shutting_down = true;
if(!d->instances.isEmpty())
{
foreach(JDnsSharedPrivate::Instance *i, d->instances)
i->jdns->shutdown();
}
else
QMetaObject::invokeMethod(d, "late_shutdown", Qt::QueuedConnection);
}
QList<QByteArray> JDnsShared::domains()
{
return get_sys_info().domains;
}
void JDnsShared::waitForShutdown(const QList<JDnsShared*> instances)
{
JDnsShutdown s;
s.waitForShutdown(instances);
}
bool JDnsSharedPrivate::addInterface(const QHostAddress &addr)
{
if(shutting_down)
return false;
// make sure we don't have this one already
foreach(Instance *i, instances)
{
if(i->addr == addr)
return false;
}
int index = getNewIndex();
addDebug(index, QString("attempting to use interface %1").arg(addr.toString()));
QJDns *jdns;
if(mode == JDnsShared::UnicastInternet || mode == JDnsShared::UnicastLocal)
{
jdns = new QJDns(this);
jdns_link(jdns);
if(!jdns->init(QJDns::Unicast, addr))
{
doDebug(jdns, index);
delete jdns;
return false;
}
if(mode == JDnsShared::UnicastLocal)
{
QJDns::NameServer host;
host.address = QHostAddress("224.0.0.251");
host.port = 5353;
jdns->setNameServers(QList<QJDns::NameServer>() << host);
}
}
else // Multicast
{
// only one multicast interface allowed per IP protocol version.
// this is because we bind to INADDR_ANY.
bool have_v6 = false;
bool have_v4 = false;
foreach(Instance *i, instances)
{
if(i->addr.protocol() == QAbstractSocket::IPv6Protocol)
have_v6 = true;
else
have_v4 = true;
}
bool is_v6 = (addr.protocol() == QAbstractSocket::IPv6Protocol) ? true : false;
if(is_v6 && have_v6)
{
addDebug(index, "already have an ipv6 interface");
return false;
}
if(!is_v6 && have_v4)
{
addDebug(index, "already have an ipv4 interface");
return false;
}
QHostAddress actualBindAddress;
if(is_v6)
actualBindAddress = QHostAddress::AnyIPv6;
else
actualBindAddress = QHostAddress::Any;
jdns = new QJDns(this);
jdns_link(jdns);
if(!jdns->init(QJDns::Multicast, actualBindAddress))
{
doDebug(jdns, index);
delete jdns;
return false;
}
}
Instance *i = new Instance;
i->jdns = jdns;
i->addr = addr;
i->index = index;
instances += i;
instanceForQJDns.insert(i->jdns, i);
addDebug(index, "interface ready");
if(mode == JDnsShared::Multicast)
{
// extend active requests to this interface
foreach(JDnsSharedRequest *obj, requests)
{
if(obj->d->type == JDnsSharedRequest::Query)
{
Handle h(i->jdns, i->jdns->queryStart(obj->d->name, obj->d->qType));
obj->d->handles += h;
requestForHandle.insert(h, obj);
}
else // Publish
{
Handle h(i->jdns, i->jdns->publishStart(obj->d->pubmode, obj->d->pubrecord));
obj->d->handles += h;
requestForHandle.insert(h, obj);
}
}
}
return true;
}
void JDnsSharedPrivate::removeInterface(const QHostAddress &addr)
{
Instance *i = 0;
for(int n = 0; n < instances.count(); ++n)
{
if(instances[n]->addr == addr)
{
i = instances[n];
break;
}
}
if(!i)
return;
int index = i->index;
// we don't cancel operations or shutdown jdns, we simply
// delete our references. this is because if the interface
// is gone, then we have nothing to send on anyway.
foreach(JDnsSharedRequest *obj, requests)
{
for(int n = 0; n < obj->d->handles.count(); ++n)
{
Handle h = obj->d->handles[n];
if(h.jdns == i->jdns)
{
// see above, no need to cancel the operation
obj->d->handles.removeAt(n);
requestForHandle.remove(h);
break;
}
}
// remove published reference
if(obj->d->type == JDnsSharedRequest::Publish)
{
for(int n = 0; n < obj->d->published.count(); ++n)
{
Handle h = obj->d->published[n];
if(h.jdns == i->jdns)
{
obj->d->published.removeAt(n);
break;
}
}
}
}
// see above, no need to shutdown jdns
instanceForQJDns.remove(i->jdns);
instances.removeAll(i);
delete i->jdns;
delete i;
// if that was the last interface to be removed, then there should
// be no more handles left. let's take action with these
// handleless requests.
foreach(JDnsSharedRequest *obj, requests)
{
if(obj->d->handles.isEmpty())
{
if(mode == JDnsShared::UnicastInternet || mode == JDnsShared::UnicastLocal)
{
// for unicast, we'll invalidate with ErrorNoNet
obj->d->success = false;
obj->d->error = JDnsSharedRequest::ErrorNoNet;
obj->d->lateTimer.start();
}
else // Multicast
{
// for multicast, we'll keep all requests alive.
// activity will resume when an interface is
// added.
}
}
}
addDebug(index, QString("removing from %1").arg(addr.toString()));
}
void JDnsSharedPrivate::queryStart(JDnsSharedRequest *obj, const QByteArray &name, int qType)
{
obj->d->type = JDnsSharedRequest::Query;
obj->d->success = false;
obj->d->results.clear();
obj->d->name = name;
obj->d->qType = qType;
// is the input an IP address and the qType is an address record?
if(qType == QJDns::Aaaa || qType == QJDns::A)
{
QHostAddress addr;
if(addr.setAddress(QString::fromLocal8Bit(name)))
{
if(qType == QJDns::Aaaa && addr.protocol() == QAbstractSocket::IPv6Protocol)
{
QJDns::Record rec;
rec.owner = name;
rec.type = QJDns::Aaaa;
rec.ttl = 120;
rec.haveKnown = true;
rec.address = addr;
obj->d->success = true;
obj->d->results = QList<QJDns::Record>() << rec;
obj->d->lateTimer.start();
return;
}
else if(qType == QJDns::A && addr.protocol() == QAbstractSocket::IPv4Protocol)
{
QJDns::Record rec;
rec.owner = name;
rec.type = QJDns::A;
rec.ttl = 120;
rec.haveKnown = true;
rec.address = addr;
obj->d->success = true;
obj->d->results = QList<QJDns::Record>() << rec;
obj->d->lateTimer.start();
return;
}
}
}
QJDns::SystemInfo sysInfo = get_sys_info();
// is the input name a known host and the qType is an address record?
if(qType == QJDns::Aaaa || qType == QJDns::A)
{
QByteArray lname = name.toLower();
QList<QJDns::DnsHost> known = sysInfo.hosts;
foreach(QJDns::DnsHost host, known)
{
if(((qType == QJDns::Aaaa && host.address.protocol() == QAbstractSocket::IPv6Protocol)
|| (qType == QJDns::A && host.address.protocol() == QAbstractSocket::IPv4Protocol))
&& host.name.toLower() == lname)
{
QJDns::Record rec;
rec.owner = name;
rec.type = qType;
rec.ttl = 120;
rec.haveKnown = true;
rec.address = host.address;
obj->d->success = true;
obj->d->results = QList<QJDns::Record>() << rec;
obj->d->lateTimer.start();
return;
}
}
}
// if we have no QJDns instances to operate on, then error
if(instances.isEmpty())
{
obj->d->error = JDnsSharedRequest::ErrorNoNet;
obj->d->lateTimer.start();
return;
}
if(mode == JDnsShared::UnicastInternet)
{
// get latest nameservers, split into ipv6/v4, apply to jdns instances
QList<QJDns::NameServer> ns_v6;
QList<QJDns::NameServer> ns_v4;
{
QList<QJDns::NameServer> nameServers = sysInfo.nameServers;
foreach(QJDns::NameServer ns, nameServers)
{
if(ns.address.protocol() == QAbstractSocket::IPv6Protocol)
ns_v6 += ns;
else
ns_v4 += ns;
}
}
foreach(Instance *i, instances)
{
if(i->addr.protocol() == QAbstractSocket::IPv6Protocol)
i->jdns->setNameServers(ns_v6);
else
i->jdns->setNameServers(ns_v4);
}
}
// keep track of this request
requests += obj;
// query on all jdns instances
foreach(Instance *i, instances)
{
Handle h(i->jdns, i->jdns->queryStart(name, qType));
obj->d->handles += h;
// keep track of this handle for this request
requestForHandle.insert(h, obj);
}
}
void JDnsSharedPrivate::queryCancel(JDnsSharedRequest *obj)
{
if(!requests.contains(obj))
return;
foreach(Handle h, obj->d->handles)
{
h.jdns->queryCancel(h.id);
requestForHandle.remove(h);
}
obj->d->handles.clear();
requests.remove(obj);
}
void JDnsSharedPrivate::publishStart(JDnsSharedRequest *obj, QJDns::PublishMode m, const QJDns::Record &record)
{
obj->d->type = JDnsSharedRequest::Publish;
obj->d->success = false;
obj->d->results.clear();
obj->d->pubmode = m;
obj->d->pubrecord = manipulateRecord(record);
// if we have no QJDns instances to operate on, then error
if(instances.isEmpty())
{
obj->d->error = JDnsSharedRequest::ErrorNoNet;
obj->d->lateTimer.start();
return;
}
// keep track of this request
requests += obj;
// attempt to publish on all jdns instances
foreach(JDnsSharedPrivate::Instance *i, instances)
{
Handle h(i->jdns, i->jdns->publishStart(m, obj->d->pubrecord));
obj->d->handles += h;
// keep track of this handle for this request
requestForHandle.insert(h, obj);
}
}
void JDnsSharedPrivate::publishUpdate(JDnsSharedRequest *obj, const QJDns::Record &record)
{
if(!requests.contains(obj))
return;
obj->d->pubrecord = manipulateRecord(record);
// publish update on all handles for this request
foreach(Handle h, obj->d->handles)
h.jdns->publishUpdate(h.id, obj->d->pubrecord);
}
void JDnsSharedPrivate::publishCancel(JDnsSharedRequest *obj)
{
if(!requests.contains(obj))
return;
foreach(Handle h, obj->d->handles)
{
h.jdns->publishCancel(h.id);
requestForHandle.remove(h);
}
obj->d->handles.clear();
obj->d->published.clear();
requests.remove(obj);
}
void JDnsSharedPrivate::jdns_resultsReady(int id, const QJDns::Response &results)
{
QJDns *jdns = (QJDns *)sender();
JDnsSharedRequest *obj = findRequest(jdns, id);
obj->d->success = true;
obj->d->results = results.answerRecords;
if(mode == JDnsShared::UnicastInternet || mode == JDnsShared::UnicastLocal)
{
// only one response, so "cancel" it
for(int n = 0; n < obj->d->handles.count(); ++n)
{
Handle h = obj->d->handles[n];
if(h.jdns == jdns && h.id == id)
{
obj->d->handles.removeAt(n);
requestForHandle.remove(h);
break;
}
}
// cancel related handles
foreach(Handle h, obj->d->handles)
{
h.jdns->queryCancel(h.id);
requestForHandle.remove(h);
}
obj->d->handles.clear();
requests.remove(obj);
}
else // Multicast
{
// check our cache to see how we should report these results
for(int n = 0; n < obj->d->results.count(); ++n)
{
QJDns::Record &r = obj->d->results[n];
// do we have this answer already in our cache?
QJDns::Record *c = 0;
int c_at = -1;
for(int k = 0; k < obj->d->queryCache.count(); ++k)
{
QJDns::Record &tmp = obj->d->queryCache[k];
if(matchRecordExceptTtl(r, tmp))
{
c = &tmp;
c_at = k;
break;
}
}
// don't report duplicates or unknown removals
if((c && r.ttl != 0) || (!c && r.ttl == 0))
{
obj->d->results.removeAt(n);
--n; // adjust position
continue;
}
// if we have it, and it is removed, remove from cache
if(c && r.ttl == 0)
{
obj->d->queryCache.removeAt(c_at);
}
// otherwise, if we don't have it, add it to the cache
else if(!c)
{
obj->d->queryCache += r;
}
}
if(obj->d->results.isEmpty())
return;
}
emit obj->resultsReady();
}
void JDnsSharedPrivate::jdns_published(int id)
{
QJDns *jdns = (QJDns *)sender();
JDnsSharedRequest *obj = findRequest(jdns, id);
// find handle
Handle handle;
for(int n = 0; n < obj->d->handles.count(); ++n)
{
Handle h = obj->d->handles[n];
if(h.jdns == jdns && h.id == id)
{
handle = h;
break;
}
}
obj->d->published += handle;
// if this publish has already been considered successful, then
// a publish has succeeded on a new interface and there's no
// need to report success for this request again
if(obj->d->success)
return;
// all handles published?
if(obj->d->published.count() == obj->d->handles.count())
{
obj->d->success = true;
emit obj->resultsReady();
}
}
void JDnsSharedPrivate::jdns_error(int id, QJDns::Error e)
{
QJDns *jdns = (QJDns *)sender();
JDnsSharedRequest *obj = findRequest(jdns, id);
// "cancel" it
for(int n = 0; n < obj->d->handles.count(); ++n)
{
Handle h = obj->d->handles[n];
if(h.jdns == jdns && h.id == id)
{
obj->d->handles.removeAt(n);
requestForHandle.remove(h);
break;
}
}
if(obj->d->type == JDnsSharedRequest::Query)
{
// ignore the error if it is not the last error
if(!obj->d->handles.isEmpty())
return;
requests.remove(obj);
obj->d->success = false;
JDnsSharedRequest::Error x = JDnsSharedRequest::ErrorGeneric;
if(e == QJDns::ErrorNXDomain)
x = JDnsSharedRequest::ErrorNXDomain;
else if(e == QJDns::ErrorTimeout)
x = JDnsSharedRequest::ErrorTimeout;
else // ErrorGeneric
x = JDnsSharedRequest::ErrorGeneric;
obj->d->error = x;
emit obj->resultsReady();
}
else // Publish
{
// cancel related handles
foreach(Handle h, obj->d->handles)
{
h.jdns->publishCancel(h.id);
requestForHandle.remove(h);
}
obj->d->handles.clear();
obj->d->published.clear();
requests.remove(obj);
obj->d->success = false;
JDnsSharedRequest::Error x = JDnsSharedRequest::ErrorGeneric;
if(e == QJDns::ErrorConflict)
x = JDnsSharedRequest::ErrorConflict;
else // ErrorGeneric
x = JDnsSharedRequest::ErrorGeneric;
obj->d->error = x;
emit obj->resultsReady();
}
}
void JDnsSharedPrivate::jdns_shutdownFinished()
{
QJDns *jdns = (QJDns *)sender();
addDebug(instanceForQJDns.value(jdns)->index, "jdns_shutdownFinished, removing interface");
Instance *instance = instanceForQJDns.value(jdns);
delete instance->jdns;
delete instance;
instanceForQJDns.remove(jdns);
instances.removeAll(instance);
if(instances.isEmpty())
late_shutdown();
}
void JDnsSharedPrivate::jdns_debugLinesReady()
{
QJDns *jdns = (QJDns *)sender();
doDebug(jdns, instanceForQJDns.value(jdns)->index);
}
#include "jdnsshared.moc"
|