Skip to content
Snippets Groups Projects

sppc: Add stub SLInstallLicense().

Open Vijay Kiran Kamuju requested to merge infyquest/wine-iq-devel:slinstall into master
1 unresolved thread

Merge request reports

Members who can merge are allowed to add commits.
Approval is optional
Code Quality is loading
Test summary results are being parsed
Merge blocked: 1 check failed
Merge request must be rebased, because a fast-forward merge is not possible.

Merge details

  • The source branch is 2391 commits behind the target branch.
  • 1 commit will be added to master.
  • Source branch will be deleted.

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • added 1 commit

    • 424f1eba - sppc: Add stub SLInstallLicense().

    Compare with previous version

    • This isn't going to work.

    • Do I need to set the fileid to a valid/null GUID?

    • Licensing system is a now a Windows component, so stubs like that are not going to help anything.

    • Atleast this can make installation go further, when registering during installation.

    • @nsivov Wine is full of stubs to make programs not crash, that's fine.

    • I think the problem is that the program is going to crash anyway shortly after calling the stub. Did you see any visible improvement with this patch?

    • Well, even if it's just crashing later, it is still an improvement, stubs are always a first step before any kind (partial or full) implementations.

      The logging with FIXME should be here to help with debugging too in the future.

    • I started to write a reply about how it might be impossible to implement these functions in a way that works at all, but then I remembered that in merge requests !2374 and !2377 (closed) @danielzgtg already demonstrated that stubbing them gets MS Office to work. Unfortunately, those patches have still not been accepted, and at this point they have gone so long without review that their author has probably given up on collaborating with the Wine project.

    • The MR !2374 already contain this code.

      I have been checking Wine MRs, and a lot of obviously simple, small, and helpful MRs are getting ignored into dust.

      I'll just put that to Wine developers being very busy, but this definitely feels very suspicious.

    • The point is that stubs are not going to make licensing work, and Office won't work without proper licensing. What !2377 (closed) does it an attempt to circumvent it, which we obviously don't want.

    • Yeah, application specific workaround are meh, but !2374 doesn't contain any application specific workaround.

    • Adding a stub that doesn't actually help anything is basically just extra noise, and more code in the tree. In cases where someone is actively working on a proper implementation, it also often gets in their way. It may not be a big deal, but it's not exactly like there are zero disadvantages either.

    • For me a stubs that allow a programs to properly run further is a win-win situation as long as the stub stays on it's side.

      The "In cases where someone is actively working on a proper implementation, it also often gets in their way." parts is not really a big deal as wine contributors already maintain patches on top of the latest code-base for multiples month already, adapting a patch on top of a stub is really not a big deal, I have dealt with far worse.

      Those are not really a problem, sure it can take a few minutes, bit it's not a big deal, and almost everyone doing an MR to Wine has to deal with it already in some way.

      If you still really want to go to the way of the "no stub" route, proper guidelines should be there in written form so there won't be 4th MR opened with the same stub, as most peoples would still think this would be useful to spend their time on this and are likely to open many more of the same MRs for nothing.

      I really want to try and take a look on how to do a proper implementation though, as I have a sneaking suspicion it's not as complex to implement as it seems.

    • For me a stubs that allow a programs to properly run further is a win-win situation as long as the stub stays on it's side.

      How is it a win in any way? You're not making the program actually work, and you're adding more useless code to the repository. Nor is it contributing particularly interesting work; stubs are not hard to write.

      The "In cases where someone is actively working on a proper implementation, it also often gets in their way." parts is not really a big deal as wine contributors already maintain patches on top of the latest code-base for multiples month already, adapting a patch on top of a stub is really not a big deal, I have dealt with far worse.

      Those are not really a problem, sure it can take a few minutes, bit it's not a big deal, and almost everyone doing an MR to Wine has to deal with it already in some way.

      Sure, it's not hard, but it's a pain. I've had to deal with that before and I'd really rather not again.

      If you still really want to go to the way of the "no stub" route, proper guidelines should be there in written form so there won't be 4th MR opened with the same stub, as most peoples would still think this would be useful to spend their time on this and are likely to open many more of the same MRs for nothing.

      Sure. Where would you suggest to put this advice?

      I really want to try and take a look on how to do a proper implementation though, as I have a sneaking suspicion it's not as complex to implement as it seems.

      It's actually pretty much impossible. The licenses are encrypted with a private key which is distributed as part of the OS, and which we cannot legally redistribute.

    • How is it a win in any way? You're not making the program actually work, and you're adding more useless code to the repository. Nor is it contributing particularly interesting work; stubs are not hard to write.

      I agree stubs are not interesting, boring, and easy to write, but I still believe they are useful, and help programs work better the majority of the time, wine often spam "FIXME (...) stub" a lot when running programs, while the program appear to run completely fine.

      I think the fact !2374 made an installer work is a huge win for Wine, even if the installed program it installed didn't work properly afterward.

      From what other peoples reported, having SLInstallLicense, SLGetSLIDList, and SLGetApplicationPolicy all as stubs in sppc without any extra hacks makes Office365 able to fully install and show a window saying there is a missing license, and it freezes afterwards due to an error related to v8jsi.dll, which the code seems to be available here https://github.com/microsoft/v8-jsi under MIT.

      Sure, it's not hard, but it's a pain. I've had to deal with that before and I'd really rather not again.

      Well, this is definitely foreshadowing a personal project of mine.

      Sure. Where would you suggest to put this advice?

      Both on the wiki and somewhere visible in the wine code-base.

      For the wiki, I'll say putting a link to contributing guidelines there https://wiki.winehq.org/Developers and there https://wiki.winehq.org/Source_Code should be the minimum, cause I often visit the "Source_Code" page to access the gitlab (So I assume other devs may do that too) and the "Developers" because it's where the guidelines are expected to be.

      For the codebase, a link to where the guidelines are in README.md should be enough.

      Including reference or link to guidelines in multiples places is very important to make sure first time contributors don't miss them.

      It's actually pretty much impossible. The licenses are encrypted with a private key which is distributed as part of the OS, and which we cannot legally redistribute.

      Info I gathered for partial sppc implementation (Optional read)

      Trying to get info while not reading/accessing closed/restricted information/code, I found the following code which could be helpful in some way, some of these contain stubs but some useful info:

      I was also able to determine all the calls go thru a windows service that process licenses, I was thinking of making all the license processing stuff locally on the dll instead on an external service, since I only did a surface investigation to avoid reading anything restricted, I don't know where the license data is stored, and thought on making wine use a custom folder to store licenses.

      But now that I'm reassessing the situation with this new info, I can confidently say going from stubs to the maximum level of implementation legally possible in wine will bring fewer benefit to wine than going from nothing to stubs will, off course any stubs would need to return that the license is invalid for legal reasons.

      Probably making a patch-set fixing v8jsi.dll issues would make theses sppc stubs an undeniable last requirement for Office365 to fully run, and make the stubs no longer part of the "useless clutter" category, would it be fine if I make an MR called "Fully fixing Office365" containing theses stubs if I make sure to use the minimum amount of stubs required to make both the installer and the program itself work properly?

      Stub guideline tangent

      @zfigura Also could you give me an example of guidelines on where stubs are or are not allowed, just try to write it like if it was a real guideline, I'll try to follow it to the best of my abilities when making MRs, while keeping in mind what you wrote here is temporary.

      I think an example of guidelines for stubs what would align with your line of thought while being reasonable would be:

      # Contributing stub guideline
      
      Try to avoid stubs and semi-stubs to a minimum, you may only make new stubs or updates existing stubs if **all** of theses condition are met:
      1. Making a full implementation or semi-stub require a substantial amount of effort or is not possible in wine.
      2. The stub is required to allow a stable and normal execution of a program.
      3. The stub must not attempt to bypass, circumvent, or workaround any licensing or content protection system.
      4. The stub contain a `FIXME` for debug, a `TRACE` can be used instead **only** if the stubs is being called frequently enough that it is causing noticeable performance issues on the targeted program. 
      5. The stub behavior is consistent regardless of process name or loaded executable.
      
      You **must** explicitly justify that each of the stubs in your MR follow each of theses rules, and you must explicitly tell which programs is benefiting from the stubs, and in which way it is benefiting from the stub, with a link on where to get a legal copy of the programs if available.
      
      For special cases such as semi-stubs, you must still include justification like stubs.
      
      When improving an existing stub, you must still justify your motivation of the stubs if your are not making a full or partial implementation. 
      
      When making COM classes (Aka. vtbl/interface) that contain multiple functions, you may justify the need of a stub per COM class instead of per stub.
      See: https://wiki.winehq.org/Wine_Developer's_Guide/COM_in_Wine#Adding_the_stub_class
      
      Note: Your stubs may be rejected if other part of wine prevent the program from running properly, as a general rule, only try to upstream stubs when wine is fully ready to handle the software with your MR applied.

      (I took a lot of time to proof read this myself)

      The condition about "licensing" is for legal reason, as in my opinion, the Sleep(1000) in !2377 (closed) is a clear legal liability for the Wine project. (Note: I'm not a lawyer.)
      (See "DMCA anti-circumvention provisions" at https://www.law.cornell.edu/uscode/text/17/1201)

      The MR !5484 (merged) is an example of why the exception to COM classes is very important.
      I even make an explicit reference to https://wiki.winehq.org/Wine_Developer's_Guide/COM_in_Wine#Adding_the_stub_class in the guideline.

      I hope this will inspire you to write a corrected policy on stubs, I would suggest you copy mine as a base and change what you don't like about it.
      I really want clearer guidelines, this would help a lot and stop peoples wondering why their MR is ignored, as the community could point theses developers to the guidelines.

      I know it's a long read, but it should be worth your time.

    • Adding a stub that doesn't actually help anything is basically just extra noise, and more code in the tree. In cases where someone is actively working on a proper implementation, it also often gets in their way. It may not be a big deal, but it's not exactly like there are zero disadvantages either.

      Do you think the Waterfall development model could actually work better than Agile, especially in open source?

      author has probably given up on collaborating with the Wine project

      Yeah, it was frustrating. But the reason was unrelated, being my team switching to Notion from Office. I also missed the email notifications. I'm not enthusiastic anymore about championing my patches, knowing I can always maintain a local patchset or submit them to Proton

      circumvention

      Please don't accuse me of illegal behavior. I intentionally wrote Sleep not TerminateThread, which makes it a gray area, not necessarily illegal. The Sleep simulates a very inefficient algorithm (that Linux doesn't finish scheduling before heat death) on a busy computer, and I can replace it with a Collatz Conjecture verifier if you want. It's Microsoft's design decision that Office is "run until licensing fails" not "run after licensing succeeds" (which they chose if they cared), and Microsoft's code to change the title proves it's intentional

      patch-set fixing v8jsi.dll

      That's my !2378 (closed) but I heard someone's working on a proper fix

      a private key ... cannot legally redistribute

      No company publishes their private keys. If we don't redistribute, we can adopt Switch emulators' key self-dumping requirement, and still be somewhat safe from their lawsuit's argument because Wine isn't mainly used for piracy

      where the license data is stored

      I speculate it's in the registry like other licensing data

      first time contributors don't miss them.

      Most other first time contributors can't read. It's better to be prepared to accept but fix their code

      licenses are encrypted

      I didn't investigate how they are stored or if ciphertext can be directly returned. I don't want to be forced to investigate. My patch took an hour or two, and I'd hate to have to spend a week. This "proper implementation" requirement is going to make implementation cost months. The majority of potential contributors (like me) are only capable of small, incremental fixes

    • I'm not enthusiastic anymore about championing my patches, knowing I can always maintain a local patchset or submit them to Proton

      It's no use sending them to Proton because the same people who maintain Wine and Wine Staging also maintain Proton. You could try to get the patches accepted in another Wine derivative, but I think a bigger problem may be that the infinite-sleep workaround kind of only works by accident, so even though it works for the current version of MS Office, I expect that it will break in a future version. I hate to say it, but your time and energy, which I greatly appreciate, would probably be better spent on other Wine bugs.

    • Please register or sign in to reply
  • Loïc Rebmeister mentioned in merge request !2786

    mentioned in merge request !2786

  • Vijay Kiran Kamuju added 3394 commits

    added 3394 commits

    Compare with previous version

  • Daniel Tang mentioned in merge request !2378 (closed)

    mentioned in merge request !2378 (closed)

  • Daniel Tang mentioned in merge request !2377 (closed)

    mentioned in merge request !2377 (closed)

Please register or sign in to reply
Loading